@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "League Spartan", sans-serif;
  background-color: #2c2c2c;
}

.navbar{
    background-color: black;
    display: flex;
    color: white;
    flex-flow: row;
    place-content: center;
    align-items: center;
    height: 80px;
    gap: 40px;
    padding: 10px 20px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
}

.navbar a{
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.navbar a:hover{
    background-color: white;
    color: black;
}

.navbar .left{
    display: flex;
    height: 80px;
}

.navbar .left img{
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
   .navbar a{
       font-size: 16px;
   }

   .navbar{
         flex-direction: column;
         height: auto;
         padding-bottom: 20px;
   }
}