*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 5em 10em;
    color: white;
    background-color: black;
}
h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
}
h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}
a {
    text-decoration: none;
    color: white;
}
.text-label-small {
    font-size: 14px;
}
.link-button {
    margin: 20px 0px;
    display:flex;
    font-size: 15px;
    text-decoration: underline;
}
.line-through {
    text-decoration: line-through;
}
.middle-text {
    margin: 10px 0px;
}
.text-container {
    margin: 20px 0px;
}
.sleapie-logo {
    background-image: url("./images/sleapie_logo_v2-300x100.png");
    width: 150px;
    height: 50px;
    background-size: 150px 50px;
    background-repeat: no-repeat;
}
.buttons-container {
    display: flex;
    gap: 15px
}
.button {
    display: flex;
    padding: 11px 21px;
    cursor: pointer;
    border-color: transparent;
    border-radius: 50px;
    color: white;
    transition: 0.1s;
    text-wrap-mode: wrap;
    text-wrap-style: balance;
    font-size: 17px;
}
.buy-button {
    background-color: rgb(140, 130, 197);
    /* 140 130 197 */
}
.offer-button {
    color: #fff;
    background: none;
}
.contact-button {
    color: gray;
}
.buy-button:hover {
    background-color: rgb(150, 140, 207);
}
.offer-button:hover {
    border: 2px solid rgb(140, 130, 197);
}

@media only screen and (max-width: 700px) {
    body {
        margin: 2.5em 3em;
    }
    .button {
        padding: 7px 15px;
        font-size: 14px;
    }
    .link-button {
        font-size: 12px;
    }

}