body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: white;
    overflow-x: hidden;
}



@media (min-width: 820px) {
    .material-symbols-outlined {
        font-size: 50px !important; 
        vertical-align: middle;
    }
 
}



.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
}
.content .image-container {
    position: relative;
    width: 50%;
}
.content .image-container::before {
    content: '';
    display: block;
    padding-top: 100%;
}
.content .image-container img {
    position: absolute;
    top: 20%;  
    left: -30%;  
    width: 120%;
    height: 120%;  
    border-radius: 50%;
    border: 10px solid #555;
}
.contact {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
}
.contact h1 {
    font-size: 36px;
    font-weight: bold;
}
.contact p {
    font-size: 18px;
    margin: 10px 0;
}
.contact .info {
    margin-top: 20px;
}
.contact .info p {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 20px 0;  
}
.contact .info p i {
    margin-right: 10px;
}
.creator {
    text-align: center;
    margin: 400px auto 50px;  
}
.creator h2 {
    font-size: 30px;
    font-weight: bold;
}
.creator img {
    border-radius: 50%;
    border: 5px solid #555;
    width: 150px;
    height: 150px;
}
.creator p {
    font-size: 18px;
    margin: 10px 0;
}


@media (max-width: 820px) {
    
    .content h1 {
        font-size: 72px;  
    }

    .content p {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .content .image-container {
        position: relative;
        width: 50%;
    }
    .content .image-container::before {
        content: '';
        display: block;
        padding-top: 100%;
    }
    .content .image-container img {
        position: absolute;
        top: 20%;  
        left: -30%;  
        width: 110%;
        height: 110%;  
        border-radius: 50%;
        border: 10px solid #555;
    }
    
    .contact {
        margin-left: -20px;  
    }

    .creator {
        text-align: center;
        margin: 100px auto 50px;  
    }
 
}


@media (max-width: 428px) and (max-height: 926px) {
    
    .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 h1 {
        font-size: 58px;  
    }

    .content p {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .content .image-container {
        position: relative;
        width: 50%;
    }
    .content .image-container::before {
        content: '';
        display: block;
        padding-top: 100%;
    }
    .content .image-container img {
        position: absolute;
        top: 20%;  
        left: -30%; 
        width: 110%;
        height: 110%;  
        border-radius: 50%;
        border: 10px solid #555;
    }
    
    .contact {
        margin-left: 10px; 
    }

    .creator {
        text-align: center;
        margin: 100px auto 50px; 
    }

    .content .tab-desktop {
        display: none;
    }

    .content .image-container {
        display: none; 
    }
    
}



.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;
}

.creators {
    display: flex;
}

@media (max-width: 820px) {
    .mob-block {
        display: block!important;
    }
    .content .image-container img {
        left: 40%;
    }
    .contact {
margin: 0 auto;
        margin-top: 150px;
        text-align: center;
    }
    .contact .info {
        display: table;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contact {
        margin-left: 0px;
        margin-top: 100px;
        text-align: center;
    }
    .creators {
        display: block;
    }
    .creator {
        margin-top: 50px;
    }
    .mob-block {
        padding-bottom: 0px;
    }
    .contact .info {
        display: table;
        margin: 0 auto;
    }
}