* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* background-color: rgba(255, 255, 255, 0.9);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%); */
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav {
    padding: 15px 50px;
    background: #8e9eab;
    background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab);
    background: linear-gradient(to right, #eef2f3, #8e9eab);
}

.nav a {
    text-decoration: none;
}

.nav img {
    width: 85px;
    height: auto;
}

.blue-gradient {
    background: linear-gradient(180deg,rgba(188,165,255,0) 0%,#214d76 100%);
    filter: blur(123px);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #000000;
    background: -webkit-linear-gradient(to right, #434343, #000000);
    background: linear-gradient(to right, #434343, #000000);
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #eef2f3, #8e9eab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main-text {
    animation: flashing 1.5s ease-in-out infinite;
}

header p {
    background: linear-gradient(to right, #eef2f3, #8e9eab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@keyframes flashing {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

main {
    text-align: center;
}

main p {
    font-size: 24px;
    margin-bottom: 50px;
}

.footer {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: end;
    width: 100%;
    padding: 10px 40px;
}

.footer a {
    text-decoration: none;
    background: linear-gradient(to right, #eef2f3, #8e9eab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.footer p {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    background: linear-gradient(to right, #eef2f3, #8e9eab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}

.footer strong {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0px;
    font-weight: 600;
}

.footer img {
    height: 50px;
    margin-left: -8px;
}

@media only screen and (max-width: 768px) {
    header h1 {
        font-size: 36px;
    }

    main p {
        font-size: 20px;
    }
}