body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000000;
    background-image: url("assets/img/background.jpeg");
    background-repeat: no-repeat;
    background-size: 400% 150%;
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.body-kf {
    animation: gradientAnimation 60s ease infinite;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: white;
    text-align: center;
    margin-top: 0px;
}

a {
    color: rgb(83, 200, 243);
}

.email {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgb(97, 223, 255);
    text-align: center;
    text-decoration: none;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

footer {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}