* {
    box-sizing: border-box;
    margin: 0;
}
*::before, *::after {
    box-sizing: inherit;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
button {
    font-family: inherit;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
}
.wrapper {
    padding: 70px 100px;
    max-width: 1600px;
    margin: 0 auto;
}
.title {
    font-size: 42px;
    margin-bottom: 24px;
}
.button {
    border: 0;
    font-size: 22px;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
}
.button:disabled {
    cursor: not-allowed;
    background-color: #48514B;
    opacity: 0.8;
}
.open {
    color: white;
    background-color: #1D4E08;
    margin-bottom: 60px;
}
.badge {
    color: #E18222;
}
.close {
    background-color: #F0A529;
    margin-bottom: 20px;
}
.alert {
    box-shadow: 0 0 10px 2px #48514B;
    padding: 36px;
    text-align: right;
    border-radius: 15px;
}
.alert__text {
    font-size: 22px;
    line-height: 1.6;
}
.alert--hidden {
    display: none;
}

@media screen and (max-width: 900px) {
    .wrapper {
        padding: 30px;
        text-align: center;
    }
    .title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .button {
        font-size: 19px;
        padding: 7px 15px;
    }
    .open {
        margin-bottom: 30px;
    }
    .close {
        margin-bottom: 15px;
    }
    .alert {
        padding: 24px;
        border-radius: 10px;
        text-align: center;
    }
    .alert__text {
        font-size: 18px;
    }
}
@media screen and (max-width: 600px) {
    .wrapper {
        padding: 30px 20px;
    }
    .alert {
        padding: 20px;
    }
    .title {
        font-size: 32px;
    }
    .button {
        font-size: 17px;
        padding: 5px 12px;
    }
    .alert {
        padding: 15px;
    }
    .alert__text {
        font-size: 16px;
    }
}