html, body {
    margin: 0;
    padding: 0;
    background-color: #f1f2f4;
    font-family: 'Oswald', sans-serif;
}

h2 {
    color: #faad29;
    font-size: 32px;
    line-height: 56px;
    letter-spacing: 1px;
    font-weight: 600;  
    text-align: center;  
}

h3 {
    font-size: 22px;
    line-height: 44px;
    letter-spacing: 1px;
    font-weight: 600;  
    text-align: center;  
    margin: 9px 0;
}

p {
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header {
    background-color: #ffd000;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.logo {
    margin-top: 18px; 
    margin-bottom: 18px; 
    max-width: 350px;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 0 18px 0;
    font-weight: 600;
    background-color: #1A9869;
    color: #fff;
}

.info > .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0px;
    text-align: center;
}

.poweredby {
    padding: 27px;
    margin-top: 18px;   
    margin-left: auto;
    margin-right: auto;
    color: #faad29;
}

.poweredby > .list {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.poweredby > .list > .item {
    margin: 27px;
}

.poweredby > .list > .item > img {
    width: 250px;
}

.text {
    padding: 27px;
    margin-top: 18px;    
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #faad29;
}

.content {
    margin-top: 36px;
    overflow: hidden;
}

.footer {
    color: #faad29;
}

.hr {    
    height: 9px;
    width: 100%;
}

.hr-green {
    background-color: #1A9869;
}

.hr-purple {
    background-color: #bb252b;
}

.hr-yellow {
    background-color: #faad29;
}

.poster {
    width: 700px;
}

@media only screen and (max-width: 700px) {
    .logo {
        max-width: 250px;
    }

    .poster {
        width: 100%
    }

    .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 18px 0 18px 0;
        font-weight: 600;
        background-color: #1A9869;
        color: #fff;
    }
    
    .info > .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 9px;
        text-align: center;
    }

    .text {
        padding: 27px;
    }

    .content {
        margin-top: 36px;
        padding-left: 27px;
        padding-right: 27px;
        overflow: hidden;
    }
}