/* global */

* {

}

/* main.html */

* {
    box-sizing: border-box;
    background-color: black;
    color: white;
    font-family: "Droid Sans Mono", sans-serif;
}

html {
/*  border: 2px solid blue; */
    margin: 2% 2%;
    height: 100%;
}

body {
/* border: 2px solid white; */
    margin: 1% 1%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column
}

a {
    text-decoration: none;
}



.header-nav {
    display: flex;
    font-size: 20px;
    font-weight: 900;
/* border: 1px solid purple; */
    margin: 2% 2%;
    height:min-content%;
    width: 95%;
    align-items: flex-start;
    justify-content: space-between
    
    
}


header > input {
    font-size: 16px;
    border-radius: 10px;
    border:3px solid rgb(1, 93, 146);
    background-color: rgb(18, 10, 136)
}

.login:hover,.home:hover {
    background-color: lightseagreen;
    border: 2px solid rgb(224, 26, 224);
}

header > input:hover {
    background-color: lightgoldenrodyellow;
    border: 2px solid rgb(224, 26, 224);
}




.menu-nav {
    display: flex;
    text-decoration: none;
    font-size: 36px;
    flex-direction: column;
/*  border: 1px solid red; */
    height: 80%;
    width: min-content;
    align-items: center;
    justify-content: space-evenly

}


header > .home, .login {
    background-color: rgb(1, 93, 146);
    padding: 1%;
    border: 4px solid rgb(52, 47, 121);
    border-style: outset;
    border-radius: 20px 20px 20px 20px ;
}

.menu-nav > a {
    background-color: rgb(11, 11, 65);
    border-style: inset;
    border: 2px solid rgb(8, 5, 218);
    border-radius: 40px;
    padding: 10%;
    font-weight: 900;
}
.menu-nav > a:hover {
    background-color: rgb(1, 93, 146);
    border-style: inset;
    border: 2px solid rgb(224, 26, 224);
    border-radius: 40px;
    padding: 10%;
    font-weight: 900;
}

    

