@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  border-left: 30px solid #764400;
  border-right: 30px solid #764400;
  background-color: #ffe8c8;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  margin: 0;
  min-height: 100vh;
  padding-top: 2rem;
}

.container {
  margin: auto;
  width: 1000px;
  padding: 2rem;
  max-width: 100%;
}

.logo {
  color: #764400;
  font-size: 4rem;
}

h1 {
  color: #a66000;
  font-size: 4rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

h1 a {
  transform: scale(0.6);
}

a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  position: relative;
}

a::after {
  content: "";
  background-color: #a66000;
  transform: skew(-30deg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.col {
  flex: 1;
}

.col:first-child{
  margin-right: 4rem;
}

.text {
  font-size: 2rem;
}

.text p {
  font-weight: 200;
}

img {
  margin: 3rem 0;
  box-shadow: 15px 15px #a66000;
}

img.shadow-reverse{
  box-shadow: -15px -15px #a66000;
}

.block{
  display: flex;
  text-align: center;
  margin-top: 5rem;
  font-size: 3rem;
}

@media screen and (max-width: 760px){
  h1{
    text-align: center;
  }

  .col{
    text-align: center;
  }

  .co:first-child{
    margin-right: 0;
  }

}