*{
    margin: 0;
    padding: 0;
    font-family:Nunito,sans-serif;
}
.container{
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}
a{
    text-decoration: none;
}
ul{
    list-style: disc outside;
    padding: 0 40px;
}
.nav, .footer{
    padding: 10px 100px;
}
.main-logo{
    height: 40px;
}
.banner img{
    display: block;
    width: 100%;
}
.row{
    margin: 50px 0;
}
.bottom{
    padding: 50px 0;
}

.bottom-button{
    padding: 20px 50px;
    background-color: #ed017f;
    color: #fff;
    transition: all .25s ease-in-out;
}

.bottom-button:hover{
    background-color: #fff;
    color: #ed017f;
    border: 1px solid #ed017f;
}

.bottom p{
    font-weight: bold;
}

.align-center{
    text-align: center;
}
.align-right{
    text-align: right;
}

header{
    font-size: 2.5em;
    color: #ed017f;
}

.vertical-center{
    text-align: right;
    margin-top: 50px;
}

.info-header{
    padding-top: 100px;
    font-weight: bold;
}

.footer{
    background-color: #464646;
    color: #f3f3f3;
    margin-top: 30px;
}

.footer span{
    font-size: 0.85em;
}

/* mobile */
@media (max-width: 550px) {
    .row{
        margin: 20px 0;
    }
    .info-image{
        display: block;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    .info-header{
        padding-top: 20px;
        text-align: center;
    }
    .nav,.footer {
        padding: 10px;
    }
    .bottom{
        padding: 20px 0;
    }
    header{
        font-size: 2em;
    }
}

/* tablet */
@media (max-width: 1040px) {
    .nav,.footer {
        padding: 10px 20px;
    }
}