html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    color: rgba(0, 0, 0, 0.87);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    font-family: roc-grotesk;
    letter-spacing: 0.00938em;
    background-color: #fff;
}
@media print {
  body {
    background-color: #fff;
  }
}
body::backdrop {
  background-color: #fff;
}

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

.content-sx {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
h1 {
    font-size: 60px;
    font-weight: 700;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -1.2px;
}

.content-dx {
    width: 50%;
    padding: 20px;
    overflow: hidden;
    position: relative;
    display: flex;    justify-content: center;
}
img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .content {
        flex-direction: column;
    }
    .content-sx, .content-dx {
        width: 100%;
        height: 50vh;
    }
}