:root {
    --color-ligth: #8CFF98;
    --color-medium: #AAD922;
    --color--main: #EF8354;
    --color--darkest: #483519;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: "SN Pro";
    src: url("/assets/fonts/SNPro-VariableFont_wght.ttf");
}

body {
    font-family: "SN Pro", sans-serif;
    margin: 0;
    background-color: var(--color-ligth);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    color: #222;
    min-height: 200vh;
}

.gif {
    display: block;
    border-radius: 0 1000px 1000px 0;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.first {
    display: flex;
    justify-content: space-between;
    height: 400px;
    align-items: center;
}

.content {
    color: var(--color--darkest);
    width: 60%;
    height: 100%;
    padding: 30px;
}

.content__title {
    margin: 0;
    font-size: 2.4rem;
}

.content__text {
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 1.6;
}

.first__image {
    -webkit-mask: url("/assets/images/irregular-box-white.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask: url("/assets/images/irregular-box-white.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    width: 35%;
}