.logotext {
    color: #E8E8E8;
    font-size: 48px;
    font-family: Helvetica, Sans-Serif;
}

.logosubtext {
    color: #999;
    font-size: 16px;
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #080808;
    display: flex;
    flex-direction: column;
    min-height:100vh;
    margin: 0;
    padding: 0;
    color: #E8E8E8;
    width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.bottom {
    margin-top: auto;
    display: flex;
    align-content: flex-end;
    width: 100%;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #303030;
    width: 100%;
    height: 60px;
}

.footer-text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 16px;
    font-family: Helvetica, Sans-Serif;
}

.footer-text a {
    color: #999;
    font-size: 16px;
    font-family: Helvetica, Sans-Serif;
    text-decoration: none;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
}

.content-container {
    width: 100%;
    position: static;
}

.social-logo{
    width: 39px;
    height: 39px;
    padding-left: 0.0vw;
    padding-right: 0.0vw;
    opacity: 0.85;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 960px) {    
.logotext {
    font-size: 30px;
}
.logosubtext {
    font-size: 16px;
}
}