*{
    margin: 0;
    padding: 0;
}

/*! NavBar */

nav{
    /* position: fixed;
    top: 0;
    left: 0; */
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    background-color: #383a8f;
    color: rgb(255, 255, 255);
}

.Logo{
    text-shadow: 1px 1px #000;
}

ul{
    padding-top: 1px;
    /* padding-left: 80%; */
    list-style-type: none;
    display: flex;
}
li{
    padding-left: 30px;
}
a{
    color: black;
    text-decoration: none;
    color: rgb(255, 255, 255);   
    font-size: 20px;
    font-weight: bold;
}

.text-shadow{
    text-shadow: 2px 2px black;
}

.head_line{
    text-shadow: 0.3px 0.3px #000;
}

/*! Footer */

footer{
    text-align: center;
    padding: 20px 0px;
    border: gray solid 1px;
    background-color: #242574;
    color:white;
    position: relative;
    left: 0;
    bottom: 0;
}

/*! btn */

a.btn{
    padding: 10px 40px;
    border:black solid 1px;
    border-radius: 20px;
    background: #ffffff;   
    color: #000;
    font-weight: 100;
    box-shadow: 5px 5px #000;
    cursor: pointer;
}

a.btn:checked{

    border:rgb(255, 255, 255) solid 1px;
    border-radius: 20px;
    background: transparent;   
    color: #ffffff;
    font-weight: 100;
    box-shadow: none;
}