body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }

    body {
        font-family: sans-serif;
        background: url('../media/hatterek/hatter4.jpg') center fixed;
        background-size: cover;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    box-sizing: border-box;
}


    .profil {
        padding: 1.25rem;
        border-radius: 0.625rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.4);
        width: 50%;
        max-width: 40rem;
        min-width: 20rem;
    }

    .profil img {
        width: 9.375rem;
        height: 9.375rem;
        border-radius: 50%;
        border: 0.1875rem solid white;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }

    h1 {
        margin: 0.625rem 0;
        font-size: 2.5rem;
        text-align: center;
    }

    .leírás {
        font-size: 1.25rem;
        font-style: italic;
        text-align: center;
    }

    .menü {
        margin-top: 1.25rem;
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 1.125rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menü a {
        text-decoration: none;
        display: block;
        color: white;
        font-size: 1.125rem;
        padding: 0.5rem 1rem;
        min-width: 9.375rem;
        border: 1px solid white;
        border-radius: 0.3125rem;
        transition: 0.3s;
        background: rgba(0, 0, 0, 0.5);
        cursor: pointer;
        text-align: center;
        margin: 0;
    }

    .menü a:hover {
        background: rgba(255, 255, 255, 0.6);
        color: black;
    }

    @media screen and (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }

        .leírás {
            font-size: 1.125rem;
        }

        .menü {
            flex-direction: column;
        }

        .profil {
            width: 80%;
        }
    }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .profil {
            width: 70%;
        }

        h1 {
            font-size: 2.25rem;
        }

        .leírás {
            font-size: 1.2rem;
        }
    }

    @media screen and (min-width: 1025px) {
        .profil {
            width: 50%;
        }

        h1 {
            font-size: 2.5rem;
        }

        .leírás {
            font-size: 1.25rem;
        }
    }