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

        body {
            height: 100vh;
            background-attachment: fixed;
            font-family: 'Titillium Web', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
             color: rgb(37, 37, 37);
        }

      .container {
    position: relative;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(193, 193, 193, 0.5);
    overflow: hidden;
}




     /* Typography harmony */
h1 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 200;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Links matching style */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.links a {
    color: rgba(78, 78, 78, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    transition: color 0.2s ease;
}
.links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: rgb(78, 78, 78);;
    transition: width 0.3s ease;
}
.links a:hover {
    color: rgb(78, 78, 78);;
}
.links a:hover::after {
    width: 100%;
    left: 0;
}
        @media (max-width: 480px) {
            h1 {
                font-size: 2.5rem;
            }

            .container {
                padding: 2rem 1.5rem;
            }
        }


#mailadd{
    margin-top: 1.5rem;
    font-weight: bold;
}