/* define css variables */
@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
    --brand-color: #15ba9b;
    --brand-text: #324C56;
    --brand-lighter: #444;
    --brand-lightray: #DBDFE1;
    --brand-darkgrey: hwb(200 86% 24%);
}




* {
    font-family: 'Satoshi', sans-serif;
}

body,
html {
    padding: 0;
    margin: 0;
    overflow-y: hidden;
}

.background {
    background-image: url(../images/bg.webp);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#scrollhint {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    animation: moveUp 1s ease-in-out infinite;
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }

    /* Replace 100px with the distance you want to move up */
}




aside img {
    display: block;
    aspect-ratio: 837/305;
    max-width: 220px;

}




article {
    text-align: center;
    position: relative;
    overflow-y: auto;
    height: 100vh;
    height: 100dvh;
}


aside {
    display: flex;
    padding: 40px 90px;
    max-width: 564px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    line-height: 50px;
    font-weight: bold;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.71);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin: 25vh auto 70vh;
}

aside:last-of-type {
    margin-bottom: 40vh;

}

aside.logo {
    max-width: 200px;
}

@media screen and (max-width:800px) {
    aside {
        max-width: 60vw;
        padding-left: 10vw;
        padding-right: 10vw;
    }
}

@media screen and (max-width:480px) {
    aside {
        font-size: 6vw;
        line-height: 9vw;
    }
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

aside a.eml {
    display: flex;
    text-decoration: none;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
    margin-top: 20px;
}

aside a.eml:hover {
    text-decoration: underline;
}



a.btn {
    margin-top: 40px;
    appearance: none;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    -webkit-appearance: none;
    border: 0;
    text-decoration: none;
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: bold;
    background-color: var(--brand-text);
    color: white;
}

aside a.btn:hover {
    background-color: var(--brand-color);
    transition: all 0.2s;
}