*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

main p{
   font-size: 20px; 
   color: black; 
   font-family: sans-serif
}

header{
    background-color: #5ebec4;
}

main{
    background-color: #fdf5df;
    min-height: calc(109vh - 140px);
    padding: 10px 20px 50px 20px;
}
footer{
    background-color: #f92c85;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 40px;
}

header div{
    display: flex;
    align-items: center;
}

header img{
    width: 50px;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    height: 25px;
}

nav a{
    text-decoration: none;
    color: white;
    text-shadow: 0px 25px 1px white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}

nav a:hover{
    transform: translateY(-25px);
}

main img{
    width: 50%;
}

div.cont{
    display: flex;
    gap: 20px;
}

table{
    width: 100%;
    margin: 30px 0px;
}
th, td{
    border: 3px solid black;
}
form input{
    color: black;
    outline: none;
    padding: 5px;
}
form button{
    width: 100%;
    margin-top: 15px;
    font-size: 30px;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: white;
    font-weight: bold; 
    cursor: pointer;
}
 ::placeholder   {
    color: black;
    font-weight: 300;
 }
    
      
     


form{
    width: 500px;


}

form fieldset{
    padding: 20px;
    border-radius: 20px;
}
fieldset{
    background-color: antiquewhite;
}
form input{
    display: block;
    width: 100%;
}

main.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

figure img:hover{
transform: scale(1.05);
}

figure img{
    border-radius: 10px;
    height: 400px;
    width: auto;
}
figcaption{
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 50px;
}
h1{
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 60px;

}

.small{
width: 70px;
text-align: center;
}

.column {
    float: left;
    width: 33.33%;
    padding: 5px;
  }
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  