h1 {
    font-size: 200px;
    line-height: 100%;
    color: rgba(39, 47, 7, 1);
    font-family: 'Bookman Old Style Cyr';
}

.warning-text {
    text-transform: uppercase;
    display: block;
    margin-top: 75px;
    color: rgba(39, 47, 7, 1);
    font-size: 20px;
    font-weight: 700;
}

.instruction-text {
    font-size: 20px;
    color: rgba(39, 47, 7, 1);
    font-weight: 400;
}

.add-info-container {
    width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
    margin-top: 50px;
}

.see-rooms-button {
    flex: 0 0 auto;
    width: 282px;
    height: 70px;
    border-radius: 20px;
    color: #FFFFFF;
    background-color: #272F07;
    font-weight: 700;
    font-size: 20px;
    font-family: 'PT Sans', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 0 15px;
    margin-top: 20px;
}

.outer-container {
    margin-top: 150px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 767px) {
    h1 {
        font-weight: 400 !important;
        font-size: 80px !important;
    }

    .warning-text {
        font-size: 14px !important;
        margin-top: 10px !important;
    }

    .instruction-text {
        font-size: 14px !important;
    }

    .add-info-container {
        margin-top: 100px !important;
    }

    .see-rooms-button {
        width: 247px; 
        height: 43px;
        font-size: 14px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .outer-container {
        margin-top: 100px;
    }
}