html {
    height: 100%;
}

body {
    margin: 0;
    background-color: #E8E4DF;
    background-image: linear-gradient(#C1B39C, #E8E4DF);
    background-repeat: no-repeat;
    background-size: 100% 300px;
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.landing {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: clamp(30px, 6vw, 70px);
}

.logo {
    width: 50px;
    height: 50px;
}

h1 {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.1;
    color: #502c3a;
    text-shadow: 1px 2px rgba(255, 100, 100, 0.2);
}

.blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.bloc {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    background-color: #ddd7d0;
    padding: 35px 20px 20px;
    box-sizing: border-box;
    text-align: left;
    border-radius: 4px;
}

.bloc-flag {
    position: absolute;
    top: 0;
    left: 20px;
    transform: translateY(-50%);
    object-fit: cover;
    border-radius: 50%;
}

.bloc p {
    margin: 0 0 15px;
}

.bloc a {
    color: #502c3a;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: stretch;
    margin-top: 60px;
    background-color: #ddd7d0;
    text-align: left;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.hero-content {
    padding: 30px;
    box-sizing: border-box;
}

.hero h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #502c3a;
    margin: 0 0 15px;
}

.hero p {
    margin: 0 0 15px;
}

.pitch-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.btn-try {
    font-family: 'Open Sans', sans-serif;
    color: #E8E4DF;
    background-color: #a08a67;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1.6;
    white-space: nowrap;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-try:hover {
    color: #E8E4DF;
    background-color: #827052;
}

.btn-try strong {
    font-weight: 700;
}

@media (max-width: 760px) {
    h1 {
        font-size: 30px;
    }

    .bloc {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 990px) {
    .hero {
        display: block;
    }

    .hero-image img {
        height: auto;
        min-height: 0;
        object-fit: unset;
        object-position: unset;
    }

    .blocks {
        margin-bottom: 60px;
    }
}

@media (min-width: 761px) {
    .landing {
        width: 750px;
    }

    .pitch-buttons {
        flex-direction: row;
    }
}

@media (min-width: 991px) {
    .landing {
        width: 970px;
    }

    .brand {
        margin-top: -30px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .blocks {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 30px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .pitch-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1201px) {
    .landing {
        width: 1170px;
    }
}
