* {
  box-sizing: border-box;
}
body {
  background: #F5F5F5;
  font-family: Roboto, serif;
  font-weight: 300;  
  font-size: 16px;

  padding: 0 16px;
}








header, 
main {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.logo {
  display: block;
  width: 80px;
  height: 100px;
  background: url(./img/sitelogo.svg) no-repeat;
  background-size: contain;
}



h1, h2, h3 {
  font-family: Italianno, sans-serif;
  font-weight: 400;
  color: #272627;
}

h1 {
  font-size: 48px;
  line-height: 100%;
}


navigation ul {
  display: flex;
  flex-direction: row;
  gap: 48px;

  list-style-type: none;
}

.banner img {
  width: 100%;
  border-radius: 24px;
}


@media (min-width: 768px) {
  body {
    padding: 0 40px;
  }

  .logo {
    width: 180px;
    height: 115px;
  }

  h1 {
      font-size: 64px;
      margin-left: 116px;
  }  
}





