
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: white;
    overflow-x: hidden;
}

header {
    z-index: 2;
}

.main-content {
    z-index: 2;
}

.material-symbols-outlined {
    font-size: 50px !important;  
    vertical-align: middle;
}
 


.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-right: 40px;
    padding-left: 40px;
}

.main-content h1 {
    font-size: 128px;  
    margin: 0;
}

.main-content p {
    font-size: 24px;
    margin: 20px 0 0;
    letter-spacing: 2px;
}


@media (max-width: 820px) {
 

    .main-content h1 {
        font-size: 72px;  
    }

    .main-content p {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .mobile-logo, .mobile-nav {
        display: none;
    }
}


@media (max-width: 428px) and (max-height: 926px) {
  
    .main-content {
        padding-top: 50px;  
    }

    .main-content h1 {
        font-size: 35px; 
    }

    .main-content p {
        font-size: 12px;
        letter-spacing: 1px;
    }

}



.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;
}