* {
    font-family: "Inter", sans-serif;
}
body {
    margin: 0px;
}
body > section {
    display: flex;
    width: 100%;
}
body > section > section {
    width: 50%;
    height: 100vh;
}
#contentSection {
    padding: 10%;
}
#contentSection > h1 {
    font-size: 4.6vw;
    font-weight: normal;
    margin: 0px;
}
#contentSection > p {
    font-size: 1.8vw;
    margin-top: 0px;
    margin-bottom: 10%;
}
#contentSection > div {
    display: flex;
    justify-content: center;
}
#contentSection > div > button {
    aspect-ratio: max(3);
    width: 35%;
    font-size: 2vw;
    justify-self: center;
    background-color: #bc3434;
    border: 0px;
    color: white;
    cursor: pointer;
}

#imageSection {
    background-color: #bc3434;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
#imageSection > img {
    width: 70%;
}