body {
    margin: 0 auto;
    background-color: #ffffff;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*INICIO*/
header {
    padding-top: 15px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#logo {
    margin-left: 35px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 50px;
    background-color: #f2d5d4;
}

.nav-link {
    color: #650014;
    font-style: italic;
    font-size: 20px;
    margin-right: 40px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 50px;
    background-color: #f2d5d4;
}

.nav-link:hover {
    color:#f2d5d4;
    background-color: #650014;
}

.video-header {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banda-betular-container {
    overflow: hidden;
    background-color: #f2d5d4;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
}

.banda-betular {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 25px;
    font-style: italic;
    color: #650014;
}

.banda-betular span {
    padding: 0 40px;
    margin-right: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.experiencia-betular1 {
    height: 100vh;
    background: url(img/betular1.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 20px;
}

#text-box1 {
    max-width: 80%; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 20px;
}

#text-box1 hr {
    width: 80%;
    border: 1px solid #f2d5d4;
    margin: 10px 0;
}

#text-box1 h2 {
    color: #f2d5d4;
    font-size: 40px;
}

#text-box1 p {
    color: #f2d5d4;
    font-size: 25px;
}

#text-box1 button {
    margin-top: 20px;
    background-color: #650014;
    border: 1px solid #f2d5d4;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #f2d5d4;
    font-size: 25px;
}

#text-box1 button:hover {
    background-color: #f2d5d4;
    color: #650014;
}

.experiencia-betular2 {
    height: 100vh;
    background: url(img/betular2.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 20px;
}

#text-box2 {
    max-width: 80%; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 20px;
}

#text-box2 hr {
    width: 80%;
    border: 1px solid #650014;
    margin: 10px 0;
}

#text-box2 h2 {
    color: #650014;
    font-size: 40px;
}

#text-box2 p {
    color: #650014;
    font-size: 25px;
}

#text-box2 button {
    margin-top: 20px;
    background-color: #f2d5d4;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #650014;
    font-size: 25px;
    border: 1px solid #650014;
}

#text-box2 button:hover {
    background-color: #650014;
    color: #f2d5d4;
}

.banner-container {
    background-image: url(img/banner.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.banner-container p {
    font-size: 40px;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #650014;
    background-color: #f2d5d4;
}

.banner-container a {
    text-decoration: none;
    color: #650014;
    font-weight: 600;
}

#footer {
    height: 100px;
    text-align: right;
    justify-content: right;
    color: #650014;
    font-size: 25px;
    padding-top: 20px;
    padding-right: 20px;
}