
/*All resolutions*/

body {
    font-family: 'Roboto', sans-serif, Arial;
}

.flex-1 {
    flex: 1;
}

.tile ul {
    margin: 0 10px 0 0;
}

/*Small devices*/

.top {
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    background: rgb(220, 245, 255);
    background: linear-gradient(90deg, rgb(220, 245, 255) 0%, rgb(105, 178, 179) 100%);
}

.bottom {
    display: flex;
    flex-direction: column;
    margin-left: -15px;
    margin-right: -15px;
    background: #e8e8e8;
}

.tile {
    display: flex;
    flex-direction: column;
    margin: 10px 10px 0 10px;
    background-color: white;
}

.tile:last-child {
    display: flex;
    flex-direction: column;
    margin: 10px 10px 10px 10px;
    background-color: white;
}

.title {
    margin: 30px 30px 15px 30px;
    color: #515151;
}

.main-title {
    font-size: 1.8em;
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

    html, body {
        height: 100%;
    }

    .top {
        flex: 1;
        display: flex;
        align-items: center;
        margin-left: -15px;
        margin-right: -15px;
        background: rgb(220, 245, 255);
        background: linear-gradient(90deg, rgb(220, 245, 255) 0%, rgb(105, 178, 179) 100%);
    }

    .bottom {
        flex: 1;
        display: flex;
        flex-direction: row;
        margin-left: -15px;
        margin-right: -15px;
        background: #e8e8e8;
    }

    .tile {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 10px 0 10px 10px;
        background-color: white;
    }

    .tile:last-child {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 10px 10px 10px 10px;
        background-color: white;
    }

    .main-title {
        font-size: 2em;
    }

    .title {
        margin-left: 5%;
        color: #515151;
    }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

    .top {
        flex: 2;
        display: flex;
        align-items: center;
        margin-left: -15px;
        margin-right: -15px;
        background: rgb(220, 245, 255);
        background: linear-gradient(90deg, rgb(220, 245, 255) 0%, rgb(105, 178, 179) 100%);
    }

}
