body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: white;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}
.content a {
    color: #b3ffdf;
}


    .material-symbols-outlined {
        font-size: 50px !important; 
        vertical-align: middle;
    }
 

.content {
    padding-top: 100px!important;
 
    text-align: center;
}
.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    
}
.content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}
.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.images .image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #555;
}
.images .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.images .image-container.large {
    width: 400px;
    height: 400px;
}
.mobile-content {
    display: none;
}

@media (max-width: 820px) {
 
 .mobile-content {
    display: block;
    padding: 40px;
    padding-bottom: 10px;
    padding-top: 0px;
 }
 .tab-desktop {
    display: none;
 }
    .content h1 {
        font-size: 72px;  
    }

    .content p {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
 
    .images .image-container {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #555;
    }
    .images .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .images .image-container.large {
        width: 300px;
        height: 300px;
    }

 
}

@media (max-width: 428px) and (max-height: 926px) {
 
    .content {
        display: block;  
        padding: 20px;  
        margin: 0;  
        background-color: rgba(0, 0, 0, 0.8);  
        color: white;  
    }
    
    .content h1 {
        display: block;  
        font-size: 24px;  
        margin: 15px 0;  
        font-weight: bold;  
    }
    
    .content p {
        display: block;  
        font-size: 16px;  
        margin: 10px 0;  
        line-height: 1.5;  
    }

    .content .tab-desktop {
        display: none;
    }

    .content .image-container {
        display: none;  
    }
    
    .content .image-container.large {
        display: block;  
    }
}



.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background-color: black;
}

@keyframes starMovement1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-10vw, -100vh); }
}

@keyframes starMovement2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10vw, -100vh); }
}




.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkling 5s ease-in-out infinite;
    z-index: -1;
}

.headx {
    color: white;
    text-decoration: none;
}

@media (max-width: 600px) {
    .content .image-container {
        display: none;
    }
    .content .large {
        display: block;
    }
}