body {
    background-color: #EBEBEB;
}

.header {
    height: auto;
    background: linear-gradient(to right, #1A294B, #10B287);
}

.header .wrapper {
    display: flex;
    align-items: center;
}

.logo a {
    line-height: 90px;
    color: white;
}

.menu {
    margin-left: 100px;
    height: auto;
}

.menu ul {
    display: flex;
    height: auto;
}

.menu li {
    margin-right: 60px;

    a {
        color: white;
        font-size: 22px;
        font-weight: bold;
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    margin-left: 100px;
    margin-right: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    a {
        color: #10B287;
        font-size: 30px;
    }
}

.footer {
    height: 90px;
    background: linear-gradient(to right, #1A294B, #10B287);
    align-items: center;
    justify-content: center;
    display: flex;
    ul {
        display: flex;
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        li {
            padding: 0 15px;
            a {
                color: white;
            }

            span {
                display: flex;
                align-items: center;
            }
        }
    }
}