html {
    font-family: 'Roboto', sans-serif;
}

.fake-header, .fake-footer {
    height: 1px;
    width: 100%;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url(../svg/leaves_mobile.svg);
    height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

@media screen and (min-width: 425px) {
    .header {
        height: 240px;
    }
}

@media screen and (min-width: 600px) {
    .header {
        height: 300px;
    }
}

@media screen and (min-width: 1024px) {
    .header {
        height: 350px;
    }
}

@media screen and (min-width: 1200px) {
    .header {
        /* background-color: pink; */
        height: 350px;
        background-image: url(../svg/leaves_desktop.svg);
        margin-left: -35px;
        margin-right: -35px;
    }
}

@media screen and (min-width: 1600px) {
    .header {
        height: 450px;
        /* background-color: aqua; */
        margin-left: -45px;
        margin-right: -45px;
    }
}

@media screen and (min-width: 1980px) {
    .header {
        height: 600px;
        /* background-color: yellowgreen; */
        margin-left: -55px;
        margin-right: -55px;
    }
}

.quote {
    text-align: center;
    letter-spacing: 3px;
    font-weight: normal;
    font-style: italic;
}

.author {
    text-align: center;
    letter-spacing: 4px;
    font-weight: 700;
}

.watch {
    text-align: center;
    letter-spacing: 2px;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../svg/bottom.svg);
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-bottom: -100px;
}

@media screen and (min-width: 600px) {
    .footer {
        height: 300px;
    }
}

@media screen and (min-width: 1200px) {
    .footer {
        /* background-color: pink; */
        height: 305px;
    }
}

@media screen and (min-width: 1600px) {
    .footer {
        /* background-color: aqua; */
        height: 350px;
    }
}

@media screen and (min-width: 1980px) {
    .footer {
        /* background-color: yellowgreen; */
        height: 400px;
    }
}