body {
    background-color: #F1F4F3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    text-align: center;
    font-family: "Manrope", sans-serif;
}
.container img {
    width: 150px;
    margin-bottom: 32px;
}
h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
    color: #302F2C;
    margin-bottom: 16px;
}
p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #7D7D7D;
}
ul {
    display: flex;
    justify-content: space-evenly;
}
li {
    display: flex;
}
a {
    text-decoration: none;
    text-align: center;
    color: #302F2C;
    font-size: 18px;
    display: flex;
    align-items: center;
}
a:hover, a:active, a:focus {
    color: #302F2C;
}
.container .contact-icons {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    margin-right: 4px;
}
@media only screen and (max-width: 600px) {
    body {
        transform: translate(-50%, -80%);
    }
    .container {
      width: 95vw;
    }
    h1 {
        font-size: 28px;
    }
  }