@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

:root{
    --w: 5vw;
    --h: 2vh;
}

header{
    display: flex;
    align-items: center;
    background-color: pink;
    height: 85px;
    padding: 5px 20px;
}

header h1{
    text-align: center;
    flex: 1;
    font-size: clamp(16px, 5vw, 50px)
}

h2{
    font-size: calc((var(--w) + var(--h)) * 0.5);
}

h3{
    padding-top: 20px;
}

h4{
    padding-top: 20px;
}

nav{
    background-color: rgb(252, 209, 101);
}

nav ul{
display: flex;
gap: 50px;
padding: 5px 20px;
height: 35px;
align-items: center;
font-weight: 600;
}

nav li{
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: black;
}

#active{
    text-decoration: underline;
    text-underline-offset: 3px;
}

main{
    background-color: azure;
    min-height: calc(100vh - 30px - 30px - 85px);
    padding: 20px 20px 50px 20px;
}

main p{
  padding-bottom: 10px;  
}

main section img{
    width: 100%;
    border-radius: 15px;
}

main section.with_image figure{
    width: 25%;
}

.with_image{
    display: flex;
}

.link_to_recipe{
    width: 20%;
    border-radius: 20px;
}

#march{
    border-collapse: collapse;
    font-weight: 500;
}

#march th, #march td{
    border: 1px solid black;
    padding: 2px;
    width: 60px;
    height: 40px;
}

#march td{
    text-align: center;
}

#march td:not(.not_march):hover{
    background-color: rgb(201, 182, 219);
    color: white;
}

.not_march{
    font-weight: 300;
}

#merge{
    border-collapse: collapse;
}

#merge tr{
    height: 40px;
    width: 40px;
}

#merge td{
    border: 5px solid black;
    text-align: center;
    padding: 20px;
    font-size: 30px;
}

#closing

footer{
    background-color: rgb(253, 188, 253);
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-left: 20px;
    text-align: left;
    line-height: 30px;
}