body{
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    margin: 0;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.header{
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.heart{
    width: 200px;
    position: absolute;
    right: 18%;
    top: 78px;
}
.hero-bg{
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: start;
    background: url(./img/hero-bg.jpg) no-repeat center;
    background-position: center;
    background-size: cover;
}
.hero-item{
    width: 700px;
    margin: 0 auto;
}

.yellow-section{
    background-color: #FFE200;
}
.yellow-section div{
    flex-direction: row;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 0;
}
.yellow-section h2{
    color: #2E3192;
    font-size: 80px;
    margin: 20px 0;
}
.yellow-section p{
    color: #2E3192;
    font-size: 20px;
    max-width: 500px;
    width: 100%;
}

.white-bg-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white, url(./img/bg-second.png) no-repeat center;
    padding: 40px 10px;
    background-position: center;
    background-size: cover;
}

.white-bg-section h3{
    color: #2E3192;
    margin-top: 0;
    text-align: center;
    font-size: 30px;
}

.white-bg-section p{
    font-size: 20px;
    text-align: center;
    color: #1DA3DD;
}
.white-bg-section .link-container{
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    max-width: 250px;
    width: 100%;
}
.white-bg-section a{
    border: 1px solid #2E3192;
    border-radius: 6px;
    color: #2E3192;
    padding: 10px 20px;
}

.footer{
    background-color: #1DA3DD;
    
    padding: 50px 0;
    text-align: center;
}
.footer a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 1500px) {
    .heart{
        right: 10%;
    }
}
@media only screen and (max-width: 1200px) {
    .yellow-section div{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .yellow-section h2 {
        font-size: 58px;
        margin-top: 0;
    }
    .yellow-section p {
        max-width: 100%;
        width: auto;
        padding: 0 20px;
    }
    .hero-bg{
        flex-direction: column;
    }
    .heart{
        position: relative;
        right: 0;
        top: 0;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 576px) {
    .yellow-section h2 {
        font-size: 39px;
    }
    .white-bg-section h3 {
        font-size: 24px;
    }
    .white-bg-section p {
        font-size: 18px;
    }
}