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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    background: url('bg.webp') no-repeat center center/cover;
    overflow: hidden;
    text-align: center;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.logo img {
    width: 30rem;
    max-width: 100%;
    filter: drop-shadow(3px 5px 2px rgb(255 255 255 / 0.4));
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem 10rem;
    border-radius: 8px;
    max-width: 100%;
}

.motto {
    color: #ffffff;
    font-style: italic;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 3px 5px 12px rgb(255 255 255 / 0.5);
}


@media (max-width: 768px) {
    .motto {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}


@media (max-width: 480px) {
    .motto {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.email-link:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .content {
        padding: 2rem 5rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .email-link {
        font-size: 1.8rem;
    }

    .logo img {
        width: 20rem;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .email-link {
        font-size: 1.5rem;
    }

    .logo img {
        width: 15rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .email-link {
        font-size: 1.2rem;
    }

    .logo img {
        width: 10rem;
    }
}
