html,
body {
    height: 100%;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
    background: url('./assets/logo-arkema-faded.svg') bottom 4px center no-repeat #f8fbfe;
    color: #060708;
}

header {
    top: 0;
    left: 0;
    width: calc(100% - 24px);
    z-index: 1000;
    height: 88px;
    display: flex;
    justify-content: space-between;
    padding-left: 24px;
    align-items: center;
    background: rgb(40,41,95);
    background: linear-gradient(90deg, rgba(40,41,95,1) 0%, rgba(45,70,145,1) 21%, rgba(24,140,109,1) 100%);
}

header .logo-white {
    height: 40px;
    width: auto;
}

header .text {
    padding-right: 24px;
    font-weight: 500;
    text-align: end;
    color: #ffffff;
}

.main-ctn {
    max-width: 1320px;
    margin: 32px auto 0 auto;
}

h2 {
    margin: 0 0 0 24px;
    font-size: 18px;
    font-weight: 600;
    color: #292D65;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    list-style: none;
    margin: 8px 0 48px 0;
    padding: 0;
}

.links .item {
    position: relative;
    width: calc(33% - 48px);
    display: flex;
    align-items: space-between;
    flex-direction: column;
    margin: 32px 24px;
    padding: 16px 0;
    border: 1px solid #292D6533;
    border-radius: 4px;
    background-color: #F8FBFE;
    box-shadow: 0 0 8px 4px rgba(155, 155, 155, 0.2);
    color: #292D65;
    text-decoration: none;
}

.links .item .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 16px;
    color: #292D65;
}

.links .item .title img {
    width: 48px;
    height: auto;
    transform: translateY(12px);
}

.links .item  .title .title-text {
    font-weight: 500;
    text-align: end;
    color: #292D65;
}

.links .item  .subtitle {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 8px;
    margin-right: 16px;
    text-align: end;
    font-size: 12px;
    color: #292D65;
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgb(40,41,95);
    background: linear-gradient(90deg, rgba(40,41,95,1) 0%, rgba(45,70,145,1) 21%, rgba(24,140,109,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

footer p {
    width: calc(100% - 48px);
    margin: auto;
    display: flex;
    justify-content: space-between;
}

footer p a {
    font-size: 12px;
    color: white;
}

.space {
    width: 100%;
    height: 48px;
}

.copy-url {
    position: relative;
    width: 24px;
    height: auto;
    z-index: 10;
}

#notification-container {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1000;
}

.notification {
    background: #272746;
    color: #ffffff;
    padding: 8px 16px;
    margin-top: 4px;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

@media screen and (max-width: 1200px) {
    .links .item {
        width: calc(50% - 48px);
    }
}

@media screen and (max-width: 780px) {
    .links .item {
        width: 100%;
    }

    footer {
        position: relative;
    }
}