body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    background: url('../img/pc.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
}

@media (max-width: 768px) {
    body {
        background: url('../img/mobile.webp') no-repeat center center fixed;
        background-size: cover;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
    border-radius: 10px;
    min-height: calc(100vh - 40px);
    box-sizing: border-box;
}

.cookie-popupMob {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 250px;
    background: #FFFFFF;
    padding: 50px;
    border: 4px solid #272727;
    z-index: 1000;
    display: none;
    color: black;
    text-align: ;
    border-radius: 10px;
}

.cookie-popupMob h3 {
    color: #272727;
    margin: 0;
    margin-top: 15px;
}

.cookie-popupMob p {
    margin-top: 15px;

}

.cookie-popupMob a.link-policy {
    color: #007bff;
    text-decoration: underline;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    margin-right: 80px;
    border: 2px solid black;

}

.btn-primary-close {
    background-color: #a32626;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    border: 2px solid black;

}

.close-btn:hover {
    background-color: #e60000;
}

@media (max-width: 768px) {
    .cookie-popupMob {
        width: 300px;
        height: 300px;
    }
}
