*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(28,165,205,1) 85%, rgba(0,212,255,1) 100%);
    padding: 20px 60px;
    min-height: 100vh;
    background-image: url("https://images.pexels.com/photos/912364/pexels-photo-912364.jpeg?auto=compress&cs=tinysrgb&w=600");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: rgb(226, 219, 219);
}
header{
    display: flex;
    padding: 20px 100px;
    justify-content: space-between;
}
.container{
    justify-content: space-between;
    display: flex;
    padding: 20px 100px;
}
form{
    padding-top: 40px;
    width: 40%;
}
.right{
    width: 100%;
    display: flex;
    justify-content: right;
    margin-top: 5px;
}
.timeZoneBox{
    display: flex; 
    width: 40%; 
    justify-content: space-between;
    flex-wrap: wrap;
}
.timeZone{
    display: flex; 
    flex-direction: column;
}
.timeZoneBox h3{
    border: 1px solid rgb(175, 164, 164);
    text-align: center;
}
iframe:nth-child(odd) {
    border: 1px solid black;
}
iframe:nth-child(even) {
    margin: 10px 0px;
}
#img{
    width: 150px;
}
.ans{
    opacity: 0;
    color: rgb(10, 10, 10);
    border: 1px solid rgb(198, 190, 190);
    margin: 20px 120px;
    margin-bottom: 0px;
    padding: 40px 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
#locationFamily{
    display: flex;
}
.main{
    display: flex;
}
.main h1{
    font-size: 60px;
}
.mainSide{
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fa{
    font-size: 40px;
    background: transparent;
    color: yellow;
    border: none;
}
.fa-moon-o{
    color: aqua;
}
@media (max-width:864px) {
    header{
        padding: 20px;
    }
    body{
        height: 100vh;
        padding: 20px;
    }
    .container{
        align-items: center;
        flex-direction: column-reverse;
        padding: 10px;
    }
    .timeZoneBox{
        display: none;
    }
    form{
        padding-top: 10px;
        width: 90%;
    }
    .ans{
        flex-direction: column;
        margin: 0;
        padding: 10;
    }
}
@media (max-width:1300px) {
    #locationFamily{
        flex-direction: column;
    }
}
@media (max-width:1400px) {
    .res{
        display: none;
    }
}