/* OVERALL STYLING */
body {
    margin: 0;
    background-color:rgb(247, 247, 247);
}

nav { /*navigation bar color*/
    background-color: rgb(0, 46, 139);
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
}

nav a { /*navigation text*/
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: underline;
}

.content{
    display: flex;
    align-items: center;
    /*Changed to prevent items from shrinking with changing the window size*/
    min-height: calc(100vh-90px);
    margin-top: 30px;
}

.sideways-text {
    transform: rotate(270deg);
    color: black;
    white-space: nowrap; 
    font-size: 80px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
    margin: -120px;
}

h1 {
    color: rgb(0, 46, 139);
    font-size: 24px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a{
    color: rgb(0, 46, 139);
}




/*LANDING PAGE*/
.landing .toggle{
    color: black;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.landing .headshot {
    max-width: 100%;
    height: 700px;
}

.landing p{
    font-size: 20px;
    text-align: center;
    margin: 40px;
    padding: 40px;
    max-width: 400px;
}

.button-container {
    display: flex;
    flex-direction: column; /* stack logos vertically */
    margin: 50px;
}

.logo {
    width: 80px; /* size of logos */
    margin-bottom: 25px; /* spacing btwn logos */
}







/*TECHNICAL PAGE*/
.technical .sideways-text{
    margin-left: -50px;
}

.technical h1{
    transform: rotate(270deg);
    white-space: nowrap; 
    text-align: center;
    margin-left: -120px;
}

.technical iframe {
    width: 77%;
    height: 700px;
    margin-left: -140px;
}

.technical p{
    margin: 40px;
    max-width: 400px;
}








/*Qualifications Page*/
.qualifications .content{
    margin-top: 70px;
}

.qualifications .sideways-text{
    margin-left: -20px;
    margin-top: -200px;
}
.qualifications .resume-container iframe{
    width: 100%;
    height: 700px;
    margin-left: 70px;
}


.qualifications a button {
    padding: 10px;
    margin-left: 100px;
    background-color: rgb(0, 46, 139);
    color: white;
    border: none;
    border-radius: 5px;
}

.qualifications .text-container1 {
    margin-left: 125px;
    max-width: 310px;
    padding: 10px;
}
.qualifications .text-container2 {
    margin-left: 0px;
    max-width: 200px;
    padding: 15px;
}




/*Service Page*/
.service .content{
    margin-top: 0px;
}

.service .sideways-text{
    margin-left: -20px;
}

.service .textbox{
    padding: 60px;
}

.service img {
    width: 63%;
    height: 700px;
    margin-top: 20px;
    padding-right: 10px;
}

.service p {
    margin-left: 20px; 
    max-width: 260px;
}



