* {
  box-sizing: border-box;
  margin: 0;
  padding:0;
}

.footer p {
    color: white;
    font-family: 'Funnel Display', sans-serif;
    text-align: center;
    font-weight: 400;
    margin-top: 35px;
    font-size: 16pt;
}

.footer {
    width: 100vw;
    height: 100px;
    position: absolute;
    bottom: 0px;
    background-color: #37388d;

}

.icons {
    position: absolute;
    right: 20px;
    bottom: 100px;
}

.logo {
    text-align: center;
    top: 25%;
    position: absolute;
    text-align: center; 
    width: 100%;

}

.logo img {
    width: 800px;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
}

@media (max-width:960px) {
    .logo img {
        width: 400px;
        text-align: center;
    }

    .logo {
        top: 30%;
    }

    .footer {
        height: 70px;
    }

    .footer p {
        font-size: 12pt;
        margin-top: 20px;
    }

    .icons {
    }

}