*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background: url(./stars-bg.png);
    color: rgb(184, 182, 182);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-size: auto;
    background-repeat: repeat;
    animation: moveStars 200s linear infinite;
    background-attachment: fixed;
    transition: background-position 0.1s ease-out;

}

@keyframes moveStars {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 10000px;
    }
}

/* Smooth mouse interaction */
body.moving {
    animation: none; /* Stop animation when mouse moves */
    transition: background-position 0.1s linear;
}



.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 3%;
    padding-right: 3%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    

}
.navbar.scrolled{
    background-color: #2b2f31;
}

.logo{
    display: flex;
    align-items: center;
    width: 160px;
    padding: 0px 0;
    cursor: pointer;
    border-radius: 30px;
}

.navlist{
    border-style:groove;
    border: 1px solid rgb(62, 62, 62);
    padding: 5px 5px;
    background-color: #000000;
    border-radius: 30px;
}

.navlist li{
    display: inline-block;
    list-style-type: none;
    padding: 10px 15px 10px 15px;
    
}

.navlist li a{
    color: rgb(108, 108, 108);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
    padding: 2px 5px 2px 5px;
}
.navlist li a:hover{
    background-color: #FF7D1D;
    padding: 2px 5px 2px 5px;
    border-radius: 7px;
    
    color: rgb(255, 255, 255);
    transition: .3s;
    font-weight: normal;
}
.cubebtn{
    color: aliceblue;
    border-style:groove;
    border: 2px solid #edc85b;
    background: rgb(0, 0, 0);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: normal;
    font-size: 15px;
    transition: .4s;
    width: 120px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}
.cubebtn:hover{
    color: #535151;
    border-style:groove;
    border: 2px solid #FF7D1D;
    transition: .3s;
    background-color: #FF7D1D;
    transform: scale(1.1);
    cursor: pointer;
    font-weight: bold;
    
    
}



.section1 h1{
    font-family:Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 50px;
    text-align: center;
    margin-top: 20%;
    color: rgb(178, 162, 140);
}

.section1 span{
    font-family: 'Courier New', Courier, monospace ;
    font-size: 30px;
    font-weight: bold;
    color: #FF7D1D;
}

.section1 p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    margin-top: 2%;
    color: rgba(188, 188, 187, 0.52);
}