* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #000000;
}

body {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    height: 100vh;
}

.logo {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo > img {
    width: 100%;
    max-height: 204px;
}

.content {
   display: flex;
   flex-direction: row;
   gap: 64px;
   flex-grow: 1;
}

@media screen and (max-width: 1450px) {
    .content {
        flex-direction: column;
    }
    .description {
        margin-bottom: 64px;
    }
}

.hero {
    background-color: #FE1B8F;
    width: 100%;
    padding: 65px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    border-radius: 50px;
    animation: dikovinaEase 0.5s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}
h1 {
    font-family: "Unbounded", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
}

div, a {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

.description {
    color: #FFFFFF;
    font-size: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: dikovinaEase 0.5s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}
.description .word {
  display: inline-block;
  opacity: 0;
  /* transform: translateY(0.2em); */
  filter: blur(50px);
  transition: opacity 0.5s ease, transform, filter 0.2s ease;
}

.description .word.revealed {
  filter: blur(0px);
  opacity: 1;
  /* transform: translateY(0); */
}

.logo {
    animation: dikovinaEase 0.5s ease, transform, filter ease;
}

@keyframes dikovinaEase {
    from {
        transform: translateY(125px) scale(90%);
        filter: blur(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0px) scale(100%);
        opacity: 1;
        filter: blur(0);
    }
}

.filler {
    flex-grow: 1;
}


.a-primary {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 32px;
    background-color: #FE1B8F;
    width: fit-content;
    padding: 24px 32px;
    border-radius: 1000px;
}

.a-ghost {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 32px;
    width: fit-content;
    padding: 24px 32px;
    border-radius: 1000px;
}
.a-ghost > a {
    text-decoration: underline;
    color: #FFFFFF;
}