.frame{
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-template-rows: 1fr;
    background-color: black;
    margin: 0;
    height: 100vh;
    width: 100vw;
}
.side{
    background-color: mediumpurple;
    margin: auto;
    height: 98%;
    width: 98%;
    border-width: 2px;
}
.menu{
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: plum;
    list-style-type: square;
}
.item{
    flex: 1 30px;
    box-sizing: border-box;
    width: 100%;
    font-size: large;
    margin: 2px;
    border: 2px solid black;
    text-align: center;
}
.main{
    background-color: skyblue;
    height: 98%;
    width: 98%;
    border-width: 2px;
    margin: auto;
}
.top{
    text-align: center;
    margin: 5px;
}
@media screen and (orientation: portrait){
    .frame{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 6fr;
        background-color: black;
        margin: 0;
        height: 100vh;
        width: 100vw;
    }
    .menu{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: plum;
        list-style-type: square;
    }
}
