*{
    margin: 0;
    padding: 0; 
    /* box-sizing: border-box;*/
}
header{
    background-color: rgba(13, 13, 122,0.9);
}
h2{
    text-align: center;
    padding: 10px;
    font-size: 25px;
    font-weight: 900;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: normal;
}

main div{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    width: 100%;
}
main img{
    
    width: 330px
    
}
main h2{
    color: wheat;
}
article{
    border: 2px solid black;
    width: 100%;
}
article p{
    padding:10px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
article h3{
    background-color: rgb(147, 124, 82);
    padding: 10px;
    color:black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;;
}
.awards{
    
    font-style: normal;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;;

}
.awards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.award-box {
  flex: 1 1 300px; /* minimum width 300px, grows if space allows */
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 400px;
}

.award-box h4 {
  margin-top: 0;
}

.award-box ul {
  padding-left: 20px;
}

.award-box li {
  margin-bottom: 10px;
}
footer{
    border: 2px solid #000;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    background-color: rgba(13, 13, 122,0.9);
    color: white;
}
