*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    background-image: url(/assets/img/starbackground.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    width: 50%;
    height: 60%;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.btn{
    width: 70%;
    height: 20%;
    /* background-color: black; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
#img1{
    width: 400px;
    height: 230px;
  
}

#img3{
    width: 250px;
    height: 70px;
    
}
@media only screen and (max-width: 600px ) {
    .btn{
        width:126%;
        height: 35%;
    }
    
}