body,
html {
    margin: 0;
    padding: 0;
    background-color: #FF6A00;
}

@media screen and (min-width: 481px) {
    .topbar {
        width: 100%;
        height: 8vh;
        background-color: #FF6A00;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #div-icons {
        width: 50%;
        height: 8vh;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 6.5rem;
    }

    #div-icons svg {
        margin-right: 2vw;
        width: 1vw;
        cursor: pointer;
    }

    .footer {
        background-color: #000;
        color: #b1b1b1;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 16vh;
        padding: 0;
    }

    .footer-side1 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-side1 img {
        height: 4vh;
        width: auto;
    }

    .footer-side2 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .footer-side2 p {
        margin: 0;
        font-size: 1vw;
        max-width: 70%;

    }

    .footer-side3 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-side3 svg {
        margin-right: 1.5vw;
        width: 2vw;
        cursor: pointer;
    }
}

@media screen and (max-width: 480px) {
    .topbar {
        width: 100%;
        height: 8vh;
        background-color: #FF6A00;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #div-icons {
        width: 50%;
        height: 8vh;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 5vw;
    }

    #div-icons svg {
        margin-right: 4vw;
        width: 4vw;
        cursor: pointer;
    }

    #div-icons svg:last-child {
        margin-right: 2vw;
    }

    .footer {
        background-color: #000;
        color: #b1b1b1;
        width: 100vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 16vh;
        font-size: 0.7em;
        padding: 0 2vw;
        flex-shrink: 0;
    }

    .footer-side1 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-side1 img {
        height: 3vh;
        width: auto;
        align-items: center;
        justify-content: center;
    }

    .footer-side2 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .footer-side2 p {
        margin: 0;
        font-size: 1.9vw;
    }

    .footer-side3 {
        width: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-side3 svg {
        margin-right: 2vw;
        width: 4vw;
        cursor: pointer;
    }
}