*{
    margin: 0%;
    padding: 0%;
}












.nav_bar{
    display: flex;
    height: 75px;
    background-color: red;  
    justify-content: space-between;
    color: white;
    align-items: center;
    

}
body{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header{
    position: fixed;
    z-index: 1000;
    height: 135px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
footer{
    background-color: red;
    width: 100%;
    height: 100px;
    padding: 10px;
    position: relative;
    top: 135px;
    text-align: center;
}

.nav_bar div{
    
    display: flex;
    margin: 20px;
    column-gap: 20px;
    text-align: center;  
}


.nav_links a{
    text-decoration: none;
    color: white;
    
    
}

.selected{
    padding: 12px; 
    border: 2px solid black;
    cursor: auto;
}
.not_selected:hover{
   text-decoration: underline;
}

.search_bar button{
    position: relative; 
    right: 16px;
    width: 30px; 
    bottom: 50px; 
    padding: 7px;
    border: none;
    
    border-radius: 20px;
    background-color: white;
    
}
.page_space{
    display: flex;
    
    position: relative;
    top: 135px;
    
    

}

.contents{
    margin: 15px;
    margin-top: 20px;
    margin-left: 30px;
    display: block;
    width: 85%;
    
}

.image_flex_container{
    display: flex;
    flex-wrap: wrap;
    gap: 45px;

}
.image_flex_container section{
    width: 20%;
    height: 150px;
    position: relative;
    
}

.image_flex_container img{
    width: 100%;
    height: 150px;
    border-radius: 20px;
    border: solid black 2px;
    
}
.image_flex_container .button_div{
    height: 150px;
    width: 100%;
    position: absolute;
    border-radius: 20px;
    top:0px;
    opacity: 0;

}
.image_flex_container .button_div:hover{
    opacity: 1;
    cursor: pointer;
}
.image_flex_container p{
    display: none;
    
}
.image_flex_container button{
    background-color: rgb(247, 243, 243,0.5);
    position: absolute;
    border-radius: 20px;
    width: 40%;
    top: 40%;
    left: 33%;
    padding: 10px;
    color: blue;
    cursor: pointer;
        
}
.image_flex_container button:hover{
    background-color: rgb(247, 243, 243, 0.8)
}

.add_section{
    width: 20%;
    height: 150px;
    margin-top: 45px;
    position: relative;
}
.add_section .button_div{
    height: 150px;
    width: 100%;
    position: absolute;
    border-radius: 20px;
    top:0px;
    opacity: 0;
}
.add_section img{
    width: 100%;
    height: 150px;
    border-radius: 20px;
    border: solid black 2px;
}
.add_section button{
    background-color: rgb(247, 243, 243,0.5);
    position: absolute;
    border-radius: 20px;
    width: 40%;
    top: 40%;
    left: 33%;
    padding: 10px;
    color: blue;
    cursor: pointer;
}
.add_section p{
    display: none;
}
.add_section .button_div:hover{
    opacity: 1;
    cursor: pointer;
}
.add_section button:hover{
    background-color: rgb(247, 243, 243, 0.8)
}

.login_page{
    position: relative;
    top: 135px;
    width: 100%;
    height: 400px;
    
    
   
    

    
}
.login_box{
    position: relative;
    top: 60px;
    
    width: 100%;
    height: fit-content;
    width: 450px;
    text-align: center;
    border: solid black 2px;
    border-radius: 20px;
    margin-bottom: 40px;
    margin-left: 35%;
    background-color: rgb(255,97,97);
    

}
.log_input{
    background-color: rgb(255,97,97);
    padding: 10px;
    width: 250px;
    border-radius: 30px;
    
    border: none;
    border-bottom: 2px solid black;
    text-align: center;
}

.log_input::placeholder{
    color: white;
    opacity: 0.7;
}
    



.log_inputbars{
    display: flex;
    flex-direction: column;
    width: 100% ;
    row-gap: 30px;
    align-items: center;
}

.log_buttonbar {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    margin-bottom: 25px;
    align-items: center;
}
.log_buttonbar button{
    border-radius: 25px;
    padding: 10px;
    background-color: red;
    color: white;
    border: none;

}
.log_buttonbar button:hover{
    cursor: pointer;
}







