:root {
    --Primary: #FAF4D3;
    --Secondary: #900505;
    --Accent: #FFFEFC;
    --Text: #0c1618;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--Primary);
    color: var(--Text);
    padding:0px;
    margin:0px;
    display: flex;
    flex-wrap: wrap;
}

.topbar {
    color: var(--Secondary);
    background-color:var(--Primary);
    height:120px;
    width:100%;
    border-radius: 15px;
    padding:0px 10px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;

    box-shadow: 0 0 10px 10px var(--Primary);
}
.topbar .left, .topbar .right {
    align-self: center;
    margin:0px 100px;
}
.topbar img {
    height:100%;
    align-self: center;
}
.topbar a {
    text-decoration: none;
    color: var(--Secondary)
}
.topbar a>h1 {transition-duration: 0.3s;}
.topbar a>h1:hover {
    color: var(--Text);
    transform:scale(1.05);
    transition-duration: 0.3s;
}
.topbar a>img {transition-duration: 0.3s;}
.topbar a>img:hover {
    transform:scale(1.05);
    transition-duration: 0.3s;
}

/* SECTION */
.section {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:20px;
    margin-right:0px;
    margin-left:0px;
}
.section h1 {
    font-size: 50px;
    margin-bottom: 10px;
}
.section video {
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
}
.section .left {
    width:50%;
    padding:20px;
    box-sizing: border-box;
}
.section .right {
    width:50%;
    padding:20px;
    box-sizing: border-box;
}
.section p {
    width:75%;
    text-align: justify;
    margin:auto;
    margin-bottom:25px;
}

/* Stripes */
/*
.three-stripes-bg {
    padding:0px;
    margin:0px;

    width: 100%;
    min-height: 100vh;
    background: linear-gradient(
        to right,
        #FAF4D3 0%,
        #FAF4D3 33.3%,
        var(--Secondary) 33.3%,
        var(--Secondary) 39.96%,
        #FAF4D3 39.96%,
        #FAF4D3 46.62%,
        var(--Secondary) 46.62%,
        var(--Secondary) 53.28%,
        #FAF4D3 53.28%,
        #FAF4D3 59.94%,
        var(--Secondary) 59.94%,
        var(--Secondary) 66.6%, 
        #FAF4D3 66.6%
    );
}
*/

.content .back {
    position: absolute;
    font-size: 87px;
    top:70px;
    text-align: center;
    z-index: -2;
    color:#0c16181f;
    font-family:Cambria;
}

.s2 {
    background-color:#DDD9BC;
    z-index: 10;
}