body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: Poppins;
    height: 100vh;
    color: #333;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 3, 9, 0.96) 31%, rgba(0, 51, 153, 0.96) 92%),
        url("../img/corridor.4e2cb1f00e71.jpg");
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-width: 320px;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20vw;
}

.menu-container .logo {
    height: 2rem;
}

.navbar .menu ul {
    display: flex;
    gap: 30px;
}

.navbar .menu ul li a {
    color: #fff;
    font-size: 1.5rem;
}

.navbar .menu ul li a img {
    color: #add8e6;
    padding: 0 1rem;
}


.layout {
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
    gap: 20px;
    position: relative;
    top: calc(2.3rem + 30px);
    min-height: calc(100vh - 6.3rem - 30px);
    width: 100%;
}

.left-panel {
    width: 20vw;
    padding: 20px;
    position: relative;
    margin-bottom: calc(4rem);
    left: 20px;
}

.right-panel {
    width: 20vw;
    padding: 20px;
    margin-bottom: calc(4rem);
    position: relative;
    right: 20px;
}

.social-icons{
  display: none;
}

.content {
    max-width: 1200px;
    width: calc(100%);
    margin: 10px 20px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: calc(2.5rem + 30px);
    color: #fff;
}

.content p {
    padding: 0.5rem 0;
}

.content .post img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c54a5;
    padding: 10px 20px;
    color: #fff;
    position: fixed;
    bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    z-index: 0;
    height: 4rem;
}



.footer .menu-container img {
    height: 3rem;
}

.privacy {
 /*   display: flex;
    justify-content: end;
    align-items: center;*/
    width: 20vw;
    text-align: right;
}

.content h2 {
    font-size: 1.6rem;
    padding: 1rem 0;
    font-weight: bold;
    color: #fc0;
}

.perex {
    font-size: 1.3rem;
    padding: 1rem 0;
    font-weight: bold;
}

.infographics-block img {
    max-width: 100%;
}

.content h1 {
    font-size: 2rem;
    padding: 1rem 0;
    font-weight: bold;
    color: #fc0;
    text-align: center;
}

.journal-flag {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.journal-flag img {
    height: 8vh;
    width: auto;
    border: 1px solid lightgrey;
}

.copyleft {
    text-align: center;
}

.copyleft a {
    text-decoration: underline;
}

.privacy a {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        display: none;
    }

    .content {
        padding-left: 0px;
        padding-right: 0px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    footer {
        font-size: 10px;
    }
}