:root  {
    --font-family:'Montserrat', sans-serif;
}
body  {
    background-color: #f5f5f5f5;
}
.body {
    font-family: var(--font-family);
    display: flex;
    margin-top: 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.buttons {
    margin-top: 40px;
}
.smaller-buttons {
    margin-top: 30px;
}
.bg-button {
    padding: 10px 30px 10px 30px;
    border: 2px solid #6AC898;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.5px;
}
.bg-button:hover {
    background-color: #6AC898;
    color: #ffffff;
}
.sm-button {
    padding: 5px 15px 5px 15px;
    border: 2px solid #81D7AB;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.5px;
}
.sm-button:hover {
    background-color: #81D7AB;
    color: #ffffff;
}
.title {
    font-weight: 400;
    letter-spacing: 1.5px;
}
.text {
    line-height: 1.5;
    letter-spacing: 1px;

}