html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.container{
    width: 80vw;
    overflow: hidden;
}

.flyers{
    display: flex;
}

.flyers .flyer-left{
    background-color: white;
}
.flyers .flyer-left img{
    width: 100%;
    height: 100%;
}

.flyers .flyer-right{
    background-color: #ED7222;
}

.flyers .flyer-right img{
    width: 100%;
    height: 100%;
}

.footer{
    background-color: #3E3C3A;
    position: relative;
}
.footer img{
    width: 100%;
    height: 100%;
}

.links .email{
    position: absolute;
    top: 48%;
    left: 35%;
    width: 24%;
    height: 30%;
}
.links .phone{
    position: absolute;
    top: 48%;
    left: 62%;
    width: 17%;
    height: 30%;
}

@media only screen and (max-width: 900px) {
    .container{
        width: 100vw;
    }
}

@media only screen and (max-width: 660px) {
    .container{
        width: 100vw;
    }
    .flyers{
        flex-direction: column;
    }
}