body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

a {
    color: rgb(0, 255, 255);
}

a:hover {
    color: rgb(0, 155, 255);
}


body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}


body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

@keyframes blurAnimation {
    0% {
        filter: sepia(0%);
    }

    25% {
        filter: sepia(25%);
    }

    50% {
        filter: sepia(50%);
    }

    100% {
        filter: sepia(75%);
    }
}


.btn {
    background-color: blue;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}


.btn-blue {
    background-color: transparent;
    color: white;
    border: 2px solid #008CBA;
}

.btn:hover {
    background-color: #008CBA;
    color: white;
}

.hero {
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
}

footer {
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    font-size: 0.9rem;
}

.font-lg {
    font-size: 1.2em;
}

.font-xl {
    font-size: 2em;
}