
 
*{

    padding: 0px;

    margin: 0px;

    box-sizing: border-box;

     font-family: "Orbitron", sans-serif;

}
 
:root{

    --main_bg: #00FFFF;

    --w: 5vw;

    --h: 2vh;

}
 
header{

    background-color: blue;

    color: white;

    padding: 5px 20px;

    height: 84px;

    display: flex;

    align-items: center;

}
 
header h1{

    /* width: calc(100% - 80px);

    float: right; */

    text-align: center;

    /* line-height: 84px; */

    flex: 1;

    font-size: clamp(12px, 5vw ,32px);

}
 
h2{

    /* font-size: calc((var(--w) + var(--h)) * 2); */

    font-size: 30px;

}
 
nav{

    background-color: greenyellow;

}
 
nav ul{

    display: flex;

    gap: 20px;

    padding: 5px 20px;

    height: 30px;

    align-items: center;

    justify-content: space-evenly;

}
 
nav ul li{

    list-style: none;

}
 
nav ul li a{

    text-decoration: none;

    color: black;

}
 
#active{

    text-decoration: underline;

    text-underline-offset: 3px;

}
 
main{

    background-color: var(--main_bg);

    min-height: calc(100vh - 40px - 30px - 74px);

    padding: 20px 20px 50px 20px;

}
 
main p{

    font-family: "Quantico", sans-serif;

    /* font-size: 50px; */

}
 
main section img{

    width: 100%;

    border-radius: 15px;

}
 
main section.with_image figure{

    width: 25%;

}
 
.with_image{

    display: flex;

    gap: 20px;

}
 
.link_to_recipe{

    width: 100%;

    border-radius: 20px;

    border: 3px solid red;

    transition: 0.5s;

}
 
.link_to_recipe:hover{

    transform: scale(1.05);

}
 
#march{

    border-collapse: collapse;

}
 
#march th, #march td{

    border: 3px solid red;

    padding: 2px;

    width: 70px;

    height: 30px;

}
 
#march td{

    text-align: right;

    transition: 0.5s;

}
 
#march td:not(.past):hover{

    background-color: blue;

    color: white;

}
 
.past{

    opacity: 0.4;

}
 
#merge_cells{

    border-collapse: collapse;

}
 
#merge_cells td{

    border: 5px solid blue;

    text-align: center;

    padding: 20px;

    font-size: 30px;

}
 
#closing{

    cursor: pointer;

    transition: 0.5s;

    display: block;

    position: absolute;

}
 
#closing:hover{

    transform: rotate(360deg) !important;

}
 
footer{

    background-color: rgb(255, 0, 0);

    height: 30px;

    position: fixed;

    bottom: 0px;

    left: 0px;

    right: 0px;

    text-align: center;

    line-height: 30px;

    color: rgb(247, 247, 247);

}
 
#my_form{

    width: 500px;

    margin: 0 auto;

}
 
#my_form div{

    margin: 15px 5px;

}
 
#my_form fieldset{

   padding: 10px;

   border-radius: 5px;

}
 
#my_form button{

    padding: 10px;

    width: 100%;

    background-color: blue;

    color: white;

}
 
#my_form button:hover{

    background-color: rgb(95, 95, 244);

}
 
#my_form input, #my_form textarea, #my_form select{

    background-color: transparent;

}
 
#my_form select{

    width: 100%;

}
 
 
@media print {

    nav, footer, figure{

        display: none;

    }

    p{

        font-size: 20px;

    }

}
.with_image_recipes img{
    width: 200px;
}