body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.top {
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-image: url("../img/top2.jpg");
    background-repeat: no-repeat;
    background-position: center;

    background-size: cover;
    color: white;
}

.top img {
    width: 72px;
    height: 72px;
    padding: 30px 0 0 0;
}

.top h1 {
    font-size: 20px;
}

.menu {
    display: flex;
    gap: 20px;
    padding: 0 0 30px 0;
}

.menu a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.container {
    display: flex;
    gap: 20px;
    margin: 40px 0 40px 0;
    flex-grow: 1;
}

.posts {
    flex-grow: 1;
}

.iframe {
    width: 340px;
}

.container h1 {
    margin: auto;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #353535;
}

.container h2 {
    margin: auto;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #353535;
}

.container p {
    font-family: "Roboto Condensed", sans-serif;
}

.dateAndTimeHolder {
    display: flex;
    gap: 15px;
}

.date {
    color: #730000;
}

.time {
    margin: 0;
    color: #8a8a8a;
}

.post {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #730000;
    padding-bottom: 10px;
}

.post p {
    margin: 0px;
    padding: 20px 0 20px 0;
}

.post a {
    color: #730000;
    text-decoration: none;
}

.post .more {
    color: #730000;
    text-decoration: none;
    margin-bottom: 5px;
    font-family: "Roboto Condensed", sans-serif;
    padding-top: 20px;
    transition: 0.1s;
}

.post .more:hover {
    color: #ce1d1d;
    transition: 0.1s;
}

.post img {
    max-width: 100%;
    width: auto;
}

.space {
    min-width: 20%;
    max-width: 20%;
    width: 20%;
}

.paginator {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: "Roboto Condensed", sans-serif;
}

.paginator ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.paginator .left {
    border: 1px solid #ececec;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none;
}

.paginator .left img {
    padding: 10px;
}

.paginator .right {
    border: 1px solid #ececec;

    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: none;
}

.paginator .right img {
    padding: 10px;
}

.paginator .center {
    border: 1px solid #ececec;
    padding: 10px;
    padding-top: 15px;
}

.paginator .center a {
    padding: 10px;
}

.paginator .center-disabled {
    border: 1px solid #ececec;
    padding: 10px;
    background-color: #f6f6f6;
    color: #636363;
    padding-top: 15px;
}

.paginator li {
    vertical-align: center;
}

.paginator li:hover {
    cursor: pointer;
    background-color: #f6f6f6;
}

.paginator li a {
    text-decoration: none;
    color: black;
}

.footer {
    font-family: "Roboto Condensed", sans-serif;
    display: flex;

    background-color: #222222;
    color: white;
    gap: 20px;
}

.footer .space {
    width: 20%;
}

.footer .container {
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 0;
}

.footer h1 {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    color: white;
}

.footer a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    color: #d8d8d8;
    text-decoration: none;
}

.footer a:hover {
    color: #ce1d1d;
    transition: 0.3s;
}

.final {
    display: flex;
    color: white;
    background-color: black;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
}

.final p {
    padding: 0 20% 0 20%;
    margin-left: 20px;
}

@media only screen and (max-width: 600px) {
    .container {
        flex-direction: column;
        padding: 20px;
        margin-top: 0px;
    }

    .space {
        width: 0px;
    }

    .footer .space {
        width: 0px;
    }

    .final p {
        margin-left: 0px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .space {
        min-width: 0px;
        max-width: 0px;
        width: 0px;
    }
}