*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 100vh;
}
h1{
    margin-bottom: 20px;
    font-size: 20px;
}
.image-container{
    width: 40%;
    margin-top: 40px;
}
.image-container img{
    object-fit: cover;
    width: 100%;
}
i{
    display: block;
    color: rgb(255, 59, 59);
    margin-top: 5px;
    margin-left: 10px;
    font-size: 12px;
}
.success{
    color: green;
    font-weight: 600;
    text-align: center;
}
.launch{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.launch h3{
    font-size: 34px;
    opacity: 0.5;
    font-weight: 100;
    font-weight: 400;
}
.launch span{
    font-weight: 900;
    opacity: 1;
    color: black;
}
.launch p {
    font-weight: 600;
}
.email input{
    width: 280px;
    height: 40px;
    padding-left: 10px;
    border-radius: 20px;
    opacity: 0.5;
    border: 1px solid black;
}
.email button{
    padding: 10px;
    border-radius: 20px;
    width: 150px;
    text-align: center;
    background-color: rgb(25, 87, 255);
    color: white;
    border: none;
    height: 40px;
    margin-left: 10px;
    box-shadow: 2px 2px 2px rgb(25, 87, 255) ;
    font-weight: 600;
    font-size: 12px;
}
.email button:hover{
    cursor: pointer;
    background-color: rgb(46, 101, 255) ;
    box-shadow: 3px 3px 3px rgb(25, 87, 255) ;
}
.email button:active{
    opacity: 0.8;
}
.socialLinks{
    display: flex;
    gap: 15px;
    margin: 20px 0px 20px 0px;
}
.socialLinks img{
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.171);
    padding: 10px;
    
}
@media  screen  and (max-width:767px) {
    .email{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80%;
        gap: 10px;
    }
    .email input{
        width: 100%;
    }
    .email button{
        width: 100%;
    }
    .image-container{
        width: 80%;
    }
    .image-container img{
        width: 100%;
    }
    .launch h3{
        text-align: center;
    }
    i{
        display: block;
    }
    .success{
        color: green;
        font-weight: 600;
        text-align: center;
    }
}

