.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: rgb(0,0,51);
    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;
    
    /* color + gradient */
    background: linear-gradient(
        to bottom,
        rgb(18 34 79) 0%,
        rgb(28 63 138) 55%,
        rgb(14 27 61) 100%
    );

    /* subtle depth */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.35);

    /* divider line at bottom */
    border-top: 2px solid rgba(255,255,255,0.12);
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 1px;              /* just above the border-bottom */
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.00) 0%,
        rgba(120,170,255,0.35) 50%,
        rgba(255,255,255,0.00) 100%
    );
}

.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;
}
}