* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #B0EAE8;
    --color-light: #FFDCC0;
    --color-header: #565C61;
    --color-logo: #14316F;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.aira-bold {
  font-family: "Funnel Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.aira-light {
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-dark) 50%, var(--color-light) 50%);
    z-index: -1;
}

.container {
    text-align: center;
}


.subtitle {
    font-size: 2rem;
    color: var(--color-header);
    animation: fadeIn 2s ease-in;
}

.title {
    font-size: 4rem;
    color: var(--color-header);
    animation: fadeIn 2s ease-in;
}

@media screen and (max-width: 430px) {
    .title {
        font-size: 3rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

.logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.logo-text {
    font-size: 2.5rem;
    color: var(--color-logo);
    font-family: "Alkatra", serif;
    font-weight: 500;
    font-style: normal;
}

.lottie-container {
    /* position: fixed;
    bottom: 20px;
    right: 20px; */
    margin: auto;
    margin-bottom: -15%;
    z-index: 100;
    width: 55%;
}

.lottie-container lottie-player {
    width: 100%;
    height: 100%;
}

.gif-container,
.gif-container img {
    display: none;
}