* {box-sizing: border-box;}

html{
    height:100%;
}

body {
    margin:0;
    background-image: url("nothing.jpg");
    background-position: center;
    background-size:cover;
    background-attachment: fixed;
    height: 100%;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}

p{text-align: left;}
h1{text-align: center;}

@media screen and (min-width: 600px){
    .show_small{display:none;}
}
@media screen and (max-width: 600px){
    .show_big{display:none;}
}

 /* goes to any nav_item element that is a descendant from navbar */  
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_item { 
    margin: 10px;
    text-align: center;
}

a {
    color:black;
    text-decoration: none;
}

.nav_circle{
    height: 50px;
    width: 50px;
    background-color: wheat;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.list_item {
    border-radius: 8px;
    width: 200px;
    padding: 4px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 8px;
    cursor: pointer;
}

.entry_input{
    width:30px;
}
 
.login_row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_item { 
    width: 250px;
    height: 350px;
    margin: 10px;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
}

@media screen and (max-width: 600px){
    .login_row{flex-direction: column;}
}
 
.middle_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.middle_item { 
    width: 400px;
    margin: 10px;
    padding:10px;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    min-height: 250px;
}

@media screen and (max-width: 600px){
    .middle_row{flex-direction: column;}
    .middle_item{width:100%;}
}
 
.footer_row{
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: lightgrey;
}


@media screen and (max-width: 600px){
    .footer_row{position: relative;top: 80px;}
}

.footer_item{
    margin:10px;
    padding:10px;
    text-align: center;
    font-size:20px;
}

.errMsg{
    color:red;
}

.errBorder{
    border:2px solid red;
}

.dropdown_content {
    display: none;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
    position: absolute;
    top: 70px;
    left: 40px;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.entry_dropdown_content {
    display: none;
    text-align: center;
    border-radius: 5px;
    z-index: 1;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.show{
     display:inline-block;
}

table{
    margin:auto;
}