@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body{
    margin: 0;
    overflow: hidden;
    font-family: 'Varela Round', sans-serif;
    box-sizing: border-box;
}
.main{
    position: relative;
    margin: 0 100px;
}
.background{
    overflow: hidden;
    position: absolute;
    background-position:right;
    width: 100%;
}
#logo{
    position: relative;
    width: 200px;
    height: 200px;
    top: 10px;
}
.description{
    position: relative;
    top: -150px;
    text-align: center;
    margin: 100px;
}
p{
    font-weight: bolder;
    margin-left: 300px;
    max-width: 50%;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 20px;
}
#ghana{
    width: 20px;
    height: 20px;
    border-radius: 10px;
}
.form{
    position: relative;
    top: -200px;
    margin: 100px;
    font-family: 'Varela Round', sans-serif;
}
#date{
    padding: 20px;
    width: 400px;
    font-size: 20px;
    text-align: center;
    font-family: 'Varela Round', sans-serif;
    border: none;
    margin: 5px;
    background-color: white;
}
#date:focus{
    border: none;
    outline: none;   
}
#gender{
    padding: 20px;
    width: 350px;
    font-size: 20px;
    text-align: center;
    background-color: white;
    font-family: 'Varela Round', sans-serif;
    border: none;
    margin: 5px;
}
#gender:focus{
    border: none;
    outline: none;
}
#btn{
    margin: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    font-size: 20px;
    font-family: 'Varela Round', sans-serif;
    background-color: #3cc202;
    border: none;
}
#btn:hover{
    color: white;
}
.footer{
    position: relative;
    top: -190px;
}
hr{
    border-color: #3cc202;
}
h4{
    color: #ffffff;
    text-align: center;
    font-weight: bolder;
    font-size: 15px;
}
h4:hover{
    color: #3cc202;
    
}
a{
    text-decoration: none;
}
 /*CSS classes for JS code*/
.footer-hide{
     display: none;
}
.form-hidden{
        display: none;
}
.modal-display{
    position: relative;
    text-align: center;
    top: -300px;
    width: 500px;
    height: 50px;
    border: 2px solid white;
    background-color: white;
    margin: 300px;
    padding: 100px;
    font-size: 15px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.hide-description{
    display: none;
}
.link-style{
    color: #3cc202;
    text-decoration: none;
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
}
.link-style:hover{
    border: none;
    color: white;
    background-color: black;
}

@media screen and (max-width: 720px) {
    body{
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
    } 
    .logo{
        top: 10px;
    }
    p{
        margin-left: 20px;
        max-width: 100%;
    }
    #date{
        width: 200px;
        font-size: 15px;
    }
    #gender{
        width: 200px;
        font-size: 15px;
    }
    #btn{
        width: 450px;
        font-size: 15px;
    }
    .footer{
        position: relative;
        top: -230px;
    }
    
    /*JS classes css*/
    .modal-display{
       margin: 150px;
       width: 300px;
       top: -20px;
       padding: 50px;
    }
    .link-style{
        text-decoration: none;
        margin: 5px;
        padding: 5px;
        border-top: none;

    }

}