body {
    margin:0;
    padding:0;
    font-family: 'Courier New', monospace;
}

a {
    text-decoration: none;
    color: white;
}

h1 {
    color: white;
}

h3 {
    color: white;
}

.centered {
    text-align: center;
    width: 100%;
}

.navbar {
    background-color:rgb(175, 218, 255);
    overflow: hidden;
    width: 100vw;
    margin: 0px;
    position: fixed;
    z-index: 1;
}


.navbar a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    color: white;
    background-color: rgb(71, 81, 170);
}

.navbar a:active {
    background-color: #368faa;
    color: white;
}

.main-body {
    position: relative;
    display: block;
    top: 45px;
    margin: 0px;
}

.background-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.small-img {
    width:30%;
}

.background {
    margin: 0px;
    padding: 0px;
}

.foreground {
    width: 60vw;
    position: relative;
    margin: 0px;
    padding: 0px 20px;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgb(71, 81, 170);
    background-color: #325068;
    top:0px;

}

.project-list {
    width: 60vw;
    position:relative;
    margin: 0px;
    padding: 0px 20px;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgb(71, 81, 170);
    background-color: #325068;
    top:120px;

}

p {
    color: rgb(215, 229, 255);
}

.project-title {
    color:rgb(215, 229, 255);
}

.skill-list {
    color:#368faa;
    padding: 20px 0px;
    list-style-type: none;
    overflow:hidden;
}

.skill-list li {
    color:white;
    background-color:rgb(175, 218, 255);
    border: solid 2px rgb(71, 81, 170);
    border-radius: 16px;
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 5px 10px;
    margin: 5px 5px;
    text-decoration: none;
}

.menu-skills li {
    float: right;
}

.top {
    position:fixed;
    color:white;
    display: block;
    padding: 0px 20px;
    background-color: #325068;
    width:60vw;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: 1;
    border-bottom:solid 2px rgb(175, 218, 255);
}

.project {
    border-bottom: solid 2px rgb(175, 218, 255);
    display: block;
}

.back-button {
    display:block;
    position: fixed;
    top: 10%;
    left:5%;
    color: black;
    border: 2px solid #325068;
    padding: 10px;
    border-radius: 8px;
    background-color: rgb(175, 218, 255);
}