@charset "UTF-8"; 
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Poppins:wght@500&display=swap');

body {
    background-color: #626262;
    font-family: 'Oswald', sans-serif;
}

* { /*The * applies to all pages, and the below property/values remove the default border from all pages*/
    margin: 0px;
    padding: 0px;
}

#whole_page {
    width: 100%;
}

nav {
    background: #233C4C;
    width: 100%;
    height: 110px;
    border-radius: 30px;
}

nav li a{
    padding: 10px 20px;
    text-decoration: none;
    color: black;
}

nav li {
    list-style: none;
    display: block;
    margin: 40px 5px;
    font-size: 20px; 
    float: left;
}

nav li a:hover {
    background-color: #f22222;
    border-radius: 20px;
}

nav img {
    border-radius: 50%;
    float: left;
    margin: 10px;
    width: 100px;
    height: 90px;
}

footer {
    position: absolute; /*Position abosolte and the top/bottom cause the footer to be 92% away from the top and 0px
    away from the bottom. This causes the footer element to always be stuck at the bottom of the pages*/
    top: 92%;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #000000;
}

footer p {
    color: gray;
    text-align: center;
    margin-top: 20px;
}

/*Elements specific to the About Me page*/

#middle_image {
    width: 100%;
}

#middle_image img {
    width: 300px;
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 4px solid black;
}

#left-column {
    width: 50%;
    height: auto;
    float: left;
}

#left-column p,h3{
    text-align: center;
    position: relative;
    top: 30%;
    display: block;
    font-size: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px;
}

#right-column {
    width: 50%;
    float: right;
}

video {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid black;   
    border-radius: 10px;
    background-color: #010326;
    overflow: auto;
}
