@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px;
}

.image {
    display: block;
    width: 500px;
    height: 300px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin: 30px 0;
    transition: background-image 1s ease-in-out;
}

.column {
    margin: 25px;
    font-size: larger;
    color: rgb(211, 206, 206);
    font-family: "Old Standard TT", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.column p {
    width: 40%;
    margin-top: 10px;
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
    margin: 0 20px;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.qrcode{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.qrcode img{
    width: 50%;
}
.qrs{
    display: flex;
    font-family: "Old Standard TT", serif;
}
.qrs p{
    margin-top: 20px;
    color: white;
    width: 50%;
}
.anuncio {
    margin-top: 30px;
    margin-bottom: -10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.image_ad img {
    border-radius: 10px;
}