/* Gets rid of any built-in margins or padding already on the website */
*{
    margin: 0;
    padding: 0;
}
body{
    /* Makes sure the website takes up the full screen of the device */
    min-height: 100vh;
    /* Sets the background image instead of doing it in html file */
    background-image: url(assets/IMG_8407.JPG);
    /* Makes sure the image covers the whole screen without repeats or being off-center */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Merriweather";
}
/* Styling the nav bar */
nav{
    background-color: rgb(157, 0, 157);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}
/* Styling the list as a whole */
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* Styling the elements of the nav list */
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}
nav a:hover{
    background-color: pink;
    color: black;
}
nav li:first-child{
    margin-right: auto;
}
/* Styling the nav list as a column */
.sidebar{
    position: fixed;
    top:0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(128, 0, 128, 0.131);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
.menuButton{
    display: none;
}
@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
    .menuButton{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}


/* About Content*/

.aboutBody{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.aboutContent{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    background-color: plum;
    box-shadow: 7px 4px 5px 0px rgba(0,0,0,0.75);
    border-radius: 10px;
    margin-bottom: 300px;
    gap:15px;
    padding: 15px;
}


.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: plum;
    text-align: center;
    padding: 5px;
    box-shadow: 10px 10px -10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 10px;
}
