* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'MonomaniacOne';
    src: url('./MonomaniacOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Molengo';
    src: url('./Molengo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Oswald';
    src: url('./Oswald-Light.ttf') format('truetype');
}

body {
    width: 100%;
    height: 100vh;
    background-color: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main_content_container {
    border: 1px solid #fff;
    height: 95%;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

#menu a {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    text-decoration: none;
    font-family: "MonomaniacOne";
    text-transform: uppercase;
    cursor: pointer;
}

#page_container {
    color: #fff;
    font-family: "MonomaniacOne";
    padding: 3rem;
    width: 85%;
    height: 95%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#page_container_home{
    color: #fff;
    font-family: "MonomaniacOne";
    padding: 3rem;
    width: 85%;
    height: 95%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#page_container_home :not(#title){
    font-family: "Oswald";
    font-size: 18px;
}

#title {
    font-size: 10rem;
}

.new-wrap p{
    font-size: 18px;
    font-family: "Oswald";
}


.new-wrap {
    display: flex;
    column-gap: 1rem;
    text-align: justify;
}

.new-wrap img {
    background-color: #000;
    min-width: 500px;
    min-height: 300px;
}

.new-wrap a {
    color: #fff;
}




@media only screen and (max-width:1200px) {
    .new-wrap img {
        background-color: #000;
        min-width: 400px;
        min-height: 200px;
    }

    .new-wrap p{
        font-size: 16px;
    }

}


@media only screen and (max-width:900px) {
    .new-wrap img {
        background-color: #000;
        min-width: 300px;
        min-height: 150px;
    }

    .new-wrap p{
        font-size: 14.5px;
    }

}


@media only screen and (max-width:800px) {
    .new-wrap img {
        background-color: #000;
        min-width: 300px;
        min-height: 150px;
    }

    .new-wrap p{
        font-size: 14px;
    }

    #page_container{
        padding: 2rem 1rem 1rem 1rem;
    }

}



@media only screen and (max-width:760px) {
    #page_container_home #title{
        font-size: 8rem;
    }
}


@media only screen and (max-width:700px) {

    .new-wrap{
        flex-direction: column;
    }

    .new-wrap img {
        background-color: #000;
        min-width: 350px;
        min-height: 250px;
    }

    .new-wrap p{
        font-size: 15px;
    }

    #page_container{
        padding: 2rem 1rem 1rem 1rem;
    }

}



@media only screen and (max-width:628px) {
    #page_container_home #title{
        font-size: 6rem;
    }
}

@media only screen and (max-width:474px) {
    #page_container_home #title{
        font-size: 5rem;
    }
}

