
@import url('https://fonts.googleapis.com/css2?family=Fondamento&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 15px;
    box-sizing: border-box;
}

body {
    background: url("resources/images/Body-img.jpg")no-repeat center;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Fondamento';
    color: #fff;
    font-weight: 20px;
}


.container {
    height: 100vh;
    display: flex;
}

.cover {
    margin: 0 auto;
    background-color: transparent;
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 30px;

}
.quotes-container {
    width: 78%;
    height: auto;
    margin: 0 auto;
    font-family: 'Fondamento', cursive;
    padding: 4rem;
    font-size: 28px;
    text-align: center;
    box-sizing: inherit;
}

.btn-quote {
    background-color: #fff;
    color: black;
    border-radius: 6px;
    font-size: 21px;
    padding: 10px 28px;
    margin-top: 8px;
    font-weight: bold;
    margin-left: 30px;
    margin-top: 40px;
    font-family: 'Fondamento';
    box-sizing: inherit;
}

.btn-quote:hover{
    background-color: #766547
    ;
    color: #fff;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 28px;
    }


    .btn-quote {
        font-size: 21px;
        height: 10%;
        width: 8rem;
        border-radius: 1rem;
        font-weight: bold;
    }

    .cover {
        width: 100%;
    }

    .quotes-container {
        width: 100%;
        font-size: 28px;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .quotes-container {
        width: 100%;
        font-size: 28px;
    }

    .cover {
        width: 100%;
        height: 50%;
    }
    
}