@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
    background-color: rgb(123, 137, 143);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgb(197, 136, 15);
    text-decoration: none;
    min-width: 100%;
    box-sizing: border-box;
  }

header {
    margin: 0;
    background: rgb(241, 241, 241);
    padding: 5px;
    text-align: center;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    display: inline-block;
    margin: 0 20px 0 0;
    font-weight: bold;
}
h1 {
    color: rgb(48, 48, 48);
    font-size: 14px;
    font-weight: bold;
}
a.link {
    color: black;
    text-decoration: none;
}
a.link:hover {
    color: rgb(67, 116, 96);
    text-decoration: underline;
}
section { 
   color: black;
   width: 100%;
}