
body {
    margin: 0;
    padding: 0;
}
main {
    display: flex;
    min-height: 100vh;
}
h1 {
    color: #fff;
    font-size: 60px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 105%;
    margin-bottom: 1.5rem;
}
section {
    padding: 4rem;
    box-sizing: border-box;
}
.sectionLeft {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #21b685;
    width: 50%;
}
.sectionRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.tag {
    background-color: #fff;
    border-radius: 18px;
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    width: fit-content;
}
.large-text {
    color: #fff;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}
.text {
    color: #000;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    margin: 6px 0;
}
.bold {
    font-weight: 800;
}
.illustrationContainer {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.illustration {
    width: 100%;
}
.logo {
    display: flex;
    align-self: flex-end;
}
@media (max-width: 1300px) {
    main {
        flex-direction: column;
    }
    .sectionLeft, .sectionRight {
        width: 100%;
    }
    .illustration {
        width: 300px;
    }
}
@media (max-width: 600px) {
    section {
        padding: 2rem;
    }
    h1 {
        font-size: 43px;
    }
    .large-text {
        font-size: 17px;
        line-height: 125%;
    }
    .tag {
        font-size: 24px;
    }
}