html,
body {
    height: 100%;
    margin: 0;
}

.bg {
    background-image: url(assets/mainDesktop.jpeg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    z-index: -1;
}

.content {
    position: relative;
    width: 500px;
    height: 250px;
    top: 30%;
    display: grid;
    margin: 0 auto;
    justify-content: center;
    background-color: #fff;
    padding: 10px 10px;
    box-shadow: 16px 10px 20px #857b76;
    z-index: 9999;
}

.content a{
    color: #d27c8c;
    text-decoration: none;
    font-weight: bold;
}

.buttons{
    display: flex;
    justify-content: space-evenly;
    gap: 90px;
    /* padding: 0 20px; */
    padding-top: 25px;
}

.buttons a{
    text-decoration: none;
    color: #fff;
}

.buttons a:first-of-type{
    background-color: #9e9e9e;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    border: none;
}

.buttons a:last-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7c3a25;
    width: 120px;
    height: 42px;
}

.mmm{
    border-bottom: 1px solid #7a7373;
}

@media (max-width: 768px) {
    .bg {
        background-image: url(assets/mainMobile.png);
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        z-index: -1;
    }

    .content{
        width: 70%;
        height: 30%;
        padding: 28px 32px;
    }

    .mmm{
        width: 90%;
        margin: 0 auto;
    }

    .buttons{
        padding: 0 15px;
        padding-top: 20px;
    }
}

