* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: red;
    padding: 6px 10px;
    border: 2px solid purple;
    border-radius: 33%;
}
nav {
    position: fixed;
    z-index: 10;
    height: 96vw;
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -23vw) rotate(-90deg);    
}
nav a {
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
    color: cyan;
    background-color: darkblue;
    padding: 12px 0;
    border: 2px solid white;
    border-left: 3px solid lightblue;
    border-bottom: 3px solid lightblue;
    border-radius: 15px;
}
main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    height: 100vh;
    width: 100vw;
}
.middle {
    position: relative;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color:blue;
    color: cyan;
    text-shadow: 3px 2px black;
}
h1 {
    font-size: 72px;
}
.middle p {
    font-size: 24px;
}
.middle a {
    text-decoration: none;
    color: cyan
}
aside {
    position: relative;
    height: 280px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} 
.left,
.right {
    position: relative;
    bottom: 0;
    min-height: 100vh;
    width: 100vw;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: darkblue;
}
.left h2,
.right h2 {
    display: inline-block;
    width: auto;
    position: relative;
    color: cyan;
    background-color:darkblue;
    white-space: nowrap;
    top: 10vh;
}
@media(max-width: 359px){
    h2 {
        font-size: 18px;
    }
}
.left p,
.right p {
    position: relative;
    top: 15vh;
    color: white;
    text-align: center;
    line-height: 40px;
}
#call_me {
    z-index: 20;
}
@media(max-width: 1023px) and (orientation: landscape){
    nav {
        position: absolute;
        top: 75vh;
        transform: rotate(0) translate(-50%,0);
        width: 95vw;
        flex-direction: row;
        height: unset;
    }
    nav a {
        display: inline-block;
        width: 30%;
        font-size: 2.5vw;
        font-weight: 700;
        color: cyan;
        background-color: darkblue;
        padding: 16px 0;
        border: 2px solid white;
        border-left: 3px solid lightblue;
        border-bottom: 3px solid lightblue;
        border-radius: 24px;
    }
    #call_me {
        display: inline-block;
        width: 33%;
        margin: 0 auto;
        background-color: darkblue;
        padding: 4px 0;
        border: 2px solid white;
        border-left: 3px solid lightblue;
        border-bottom: 3px solid lightblue;
        border-radius: 27px;
    }
    #call_me p {
        font-size: 3vw;
    }
    .left p {
        line-height: 30px;
    }
}
@media (min-width: 1024px) {
    body {
        overflow: hidden;
    }
    main {
        flex-direction: row;
    }
    nav {
        display: none;
    }
    h1 {
        width: 20vw;
        margin: 0 auto;
        font-size: 144px;
        font-weight: bold;
        text-shadow: 5px 5px black;
        padding-top: 45px;
        padding-bottom: 45px;
        border: 4px solid lightblue;
        border-radius: 50px;
    }
    aside {
        position: absolute;
        width: 100vw;
        height: 60vh;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .left,
    .right {
        position: relative;
        bottom: 0;
        width: 30vw;
        height: 60vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .close {
        display: none;    
    }
    .left h2,
    .right h2 {
        top: 10px;
        border-bottom: 1px solid white;
        width: 28vw;
        height: 33px;
        margin-bottom: 30px;
    }
}