#wrapper {
    margin: auto;
    width: 80%;
}
body {
    background-color: #f8f8ff;
    font-family: 'Courier New', Courier, monospace;
}
header {
    margin: auto;
    float: left;
    text-align: center;
}
nav {
    margin: auto;
    display: block;
    float: right;
    text-align: center;
}
nav ul {
    list-style-type: none;
}
nav li {
    display: inline;
    padding: 10px;
}
nav a {
    font-size: 2em;
    color: black;
    text-decoration: none;
    transition: 0.2s;
}
nav a:hover {
    text-shadow: 0px 0px 5px grey;
}
table {
    margin: auto;
}
.homecontent {
    margin: auto;
    width: 80%;
    font-size: 100%;
}
.floatleft {
    display: block;
    float: left;
    width: 45%;
    text-align: right;
}
.floatleft img {
    width: 90%;
}

.floatright {
    display: block;
    float: right;
    width: 45%;
    text-align: left;
}
.floatright img {
    width: 90%;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

footer {
    display: block;
    background-color: #f1f1ff;
    border-top: 2px solid #221811;
}
.footerbox {
    margin: auto;
    width: 90%;
}
.socials {
    margin: auto;
    float: left;
    display: block;
    height: 2em;
}
.socials img {
    height: 2em;
}
.footercontent {
    margin: auto;
    float: right;
    display: block;
    font-size: 1em;
    font-style: italic;
    text-align: center;
}
.projectscontent {
    margin-bottom: 1em;
}
.scbutton {
    border-radius: 1em;
    background-color: orangered;
    color: white;
    text-align: center;
    width: 150px;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    border: 2px solid black;
    transition: 0.2s;
}
.scbutton:hover {
    color: orangered;
    font-weight: bold;
    background-color: #fff;
}

@media only screen and (max-width: 1319px) {
    header {
        float: none;
    }
    nav {
        float: none;
    }
}
@media only screen and (max-width: 748) {
    .socials {
        float: none;
    }
    .footercontent {
        float: none;
        margin: auto;
    }
}