@font-face {
    font-family: Newsreader;
    src: url('fonts/NewsreaderDisplay-Medium.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: url('fonts/Montserrat-Medium.ttf');
    font-weight: 400;
    font-display: swap;
}

*{
    font-family: Poppins, sans-serif;
}
.post, .page {
    margin: 0;
}
.main-site {
    /*padding: 2%;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    /*height: 100vh;*/
    /*position: relative;*/
    overflow: hidden;
}

.backToLpp {
    position: absolute;
    top: 2%;
    left: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.backToLpp a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    line-height: 1;
}
.backToLpp a img {
    height: 25px;
    margin-right: 2px;
}
.main-site-col {
    flex: 0 0 50%;
    max-width: 50%;
}
.lpp-list ul {
    column-count: 2;
}
.lpp-list ul li a{
    text-decoration: none;
    color: #000;
}
.lpp-list ul li a:hover{
    text-decoration: underline;
}
.main-site h1{
    font-family: Newsreader;
    color: #000;
    text-align: center;
    margin-bottom: 4%;
    font-size: 50px;
    font-weight: 400;
}

.main-site h2{
    font-family: Montserrat;
    color: #000;
    text-align: center;
    margin-bottom: 15%;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .main-site {
        flex-wrap: wrap;
        height: auto;
        min-height: 100vh;
    }
    .main-site-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .lpp-list ul{
        margin: 0;
    }
    .main-site h1{
        font-size: 30px;
    }
}
@media screen and (max-width: 399px) {
    .lpp-list ul {
        column-count: 1;
    }
    .backToLpp a {
        font-size: 0.9rem;
    }
    .backToLpp a img {
        height: 21px;
    }
    .main-site h2 {
        font-size: 1.3rem;
    }
    .main-site h1 {
        margin-top: 17%;
    }
}