html {
  padding: 0 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
  display: flex;
  flex-direction: row;
  gap: 40px;
  box-sizing: border-box;
}
.col-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 20px;

  max-height: 60vh;
}

.col-left img {
  margin-left: -12px;
}
.col-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 40px;
  border: 1px grey;
  border-radius: 24px;
  max-height: 60vh;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.col-right div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
.col-right img {
  width: 30px;
}
a {
  background-color: #162551;
  color: white;
  padding: 8px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  margin: 30px 0;
}
h1 {
  font-size: 25px;
  font-weight: 400;
}
p {
  font-weight: 300;
}
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }
}
