@import url('https://fonts.googleapis.com/css2?family=Vollkorn&display=swap');

* {
    font-family: 'Vollkorn', serif;
    font-size: 18px;
}

.pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #4d3f3f;
}

.horizon {
    min-width: 1000px;
    min-height: 50%;
    border-color: gold;
    border-radius: 2px;
}


.rContainer {
    display: table;
    align-self: center;
    max-width: 1200px;
    border-spacing: 10px;
}

.rowHalf {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    padding: 16px;
    height: 100%;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: left;
    border-radius: 20px;
}

.row {
    background-color: #8a8a8a;
    width: 76vw;
    max-width: 1200px;
    margin: 10px;
    padding: 10px;
    padding-left: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    border-radius: 50px;
}

h1 {
    font-size: 35px;
    background-color: #2b2d42;
    color: white;

}

h2 {
    color: white;
}

h3 {
    font-size: 24px;
    padding: 0;
    margin: 0;
    color: white;

}

a {
    color: white;
}

a:hover {
    color: #fc3131;
}

bs5-footer {
    bottom: 0;
    display: flex;
    align-self: center;
    justify-content: center;
    width: 80vw;
    max-width: 1200px;
    text-align: center;
    margin: 10px;
    padding: 5px;
}

bs5-footer p {
    font-size: 12px;
    text-align: center;
}


p {
    color: white;
}


.buttonM {
    align-items: center;
    text-decoration: none;
    color: white;
    background: none;
    padding: 10px;
    margin: 5px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid #8a8a8a;
    background-color: #8a8a8a;
    font-weight: 100;
    text-align: center;
    cursor: pointer;
}

.buttonM:hover {
    color: #000001;
    border: 2px solid #fc3131;
    background-color: #fc3131;
}

.embed {
    max-width: 100%;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2b2d42;
}

::-webkit-scrollbar-thumb {
    background: #058ed9;
}

::-webkit-scrollbar-thumb:hover {
    background: #058ed9;
}