*{
    padding: 0px;
    margin: 0px;

}

body{
    width: 100vw;
    height: 100vh;

    background-color: var(--main-color);
    overflow: hidden;
}

.main-wrapper{

    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);

}

#col-1{
    width: 100%;
    height: 100%;

    grid-area: 1/1/11/4;

    border-right: double var(--accent-color1);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

}

#entry-orbiter-select{
    width: 100%;
    height: 5%;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 20px;;
    

}

.select-con{
    width: 100%;
    padding: 7px;
    font-family: "text-font";
    font-size: 1.5vw;
    color: var(--accent-color1);

    border-style: solid;
    border-color: var(--accent-color1);

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.select-con:hover{
    background-color: var(--accent-color1);
    color: var(--main-color)
}

.select-button{
    width: 100%;
    height: 100%;
    display: block;

    text-align: center;
}

#entry-links-con{
    width: 100%;
    height: 95%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2px;;

    overflow-y: scroll;
}

.entry-link{
    padding: 10px;

    display: block;
    text-decoration: none;
    font-family: "header-font";
    font-size: 2rem;
    color: var(--main-color);

    background-color: var(--accent-color1);

    border-style: double;
    border-width: 5px;
    border-color: var(--main-color);
}

#orbiter-links-con{
    width: 100%;
    height: 95%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2px;;

    overflow-y: scroll;
}

.orbiter-link{
    padding: 10px;

    display: block;
    text-decoration: none;
    font-family: "header-font";
    font-size: 2rem;
    color: var(--main-color);

    background-color: var(--accent-color1);

    border-style: double;
    border-width: 5px;
    border-color: var(--main-color);
}

.desc-text{
    font-family: "text-font";
    font-size: 0.7em;
}

.date-text{
    font-family: "text-font";
    font-size: 1em;
}

.preveiw-text{
    font-family: "text-font";
    font-size: 0.7em;
}

.entry-link:visited{
    color: var(--main-color);
}

#back-button-wrapper{
    width: 70%;
    height: 70%;
    background-color: var(--accent-color1);
    border: double var(--main-color);
    border-radius: 5px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    grid-area: 10/1/11/2;
}

#back-link{
    
    font-family: "header-font";
    font-size: 2vw;
    color: var(--main-color);

    text-decoration: none;
}

#col-2{
    width: 100%;
    height: 100%;

    grid-area: 1/4/11/11;

    display: grid;
    grid-template-rows: repeat(10, 1fr);
    grid-template-columns: repeat(10, 1fr);

}

#node-frame{
    grid-area: 1/1/11/11;
    margin: 2% 5%;

    width: 90%;
    height: 90%;

    border-style: solid;
    border-color: var(--accent-color1);
}

.menu-wrapper{
    width: 100%;
    height: 100%;
    grid-area: 1/10/2/11;
    justify-self: stretch;

    z-index: 100;
}

.menu-list{
    width: 100%;
    list-style: none;

    display: flex;
    flex-direction: row;

    background-color: var(--main-color);
}

.menu-item{
    width: 100%;
    padding: 20px;
    color: var(--accent-color1);

    display: block;

    border-style: double;
    border-color: var(--accent-color1);
}

.menu-link{
    text-decoration: none;
    font-family: "header-font";
    font-size: 1.2vw;

    display:block;
    
}

.menu-link:visited{
    color: var(--accent-color1);
}

#orbiter-links-con.hide{
    display: none;
}

#entry-links-con.hide{
    display: none;
}