* {
    padding: 0;
    margin: 0;
    transition: all 0.2s;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: #ff5252;
}

.navbar img {
    margin-right: 50px;
    filter: brightness(0) invert(1);
}

.btns a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: unset;
    font-weight: bold;
    margin: 0 10px;
}

.btns a:hover {
    color: white;
}

.active {
    color: white !important;
}

.color {
    color: #ff5252;
}


.footer {
    display: flex;
    justify-content: space-between;
    padding: 10vh;
    background-color: #ff5252;
    color: white;
}

.section {
    display: flex;
    flex-direction: column;
}

.section img {
    filter: brightness(0) invert(1);
}

.section h2 {
    margin-bottom: 10px;
}

.section a {
    margin: 2px 5px;
    text-decoration: unset;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.section a:hover {
    color: white;
}

@media screen and (max-width: 1200px) {
    .navbar {
        flex-direction: column;
    }

    .navbar img {
        margin: 0;
    }

    .btns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }

    .btns a {
        margin-top: 10px;
    }

    .footer {
        flex-direction: column;
    }

    .section {
        margin: 30px 0;
    }
}