* {
  box-sizing: border-box;
}

@font-face {
  font-family: "LibreCaslonCondensed";
  font-style: normal;
  font-weight: normal;
  src: local("LibreCaslonCondensed"),
    url("font/LibreCaslonCondensed-Regular.woff") format("woff");
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0c542f;
  color: white;
  font-weight: 400;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.logo img {
  max-width: 290px;
  margin: 60px 60px 0 60px;
}

@media screen and (max-width: 450px) {
  .logo img {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }
}

.container {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 15px;
  height: 100vh;
  margin: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

h1 {
  font-family: "LibreCaslonCondensed", sans-serif;
  font-weight: 200;
  font-size: 32px;
}

@media screen and (max-width: 375px) {
  h1 {
    font-size: 22px;
  }
}

.buttons {
  display: flex;
  flex-direction: column;
  width: 300px;
  gap: 20px;
}
button {
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  line-height: 20px;
  background:#E6EACE;
}

button > img {
  width: 41px;
  height: 41px;
}

button > p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  align-items: stretch;
  width: 100%;
  padding-right: 41px;
color: #173328;
}
