BODY {
    background: #ffcc01;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100%;
}

BODY, HTML, h1, h2 {
    margin: 0;
    padding: 0;
}

a {
    color: #2e2d2b;
}

.container {
    width: 100%;
    max-width: 888px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 8vh;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
}

.title .icon {
    display: flex;
}

.title .icon .main-icon {
    width: 6rem;
    height: 6rem;
}

.title .icon .icon-part {
    width: auto;
    height: 7rem;
    position: relative;
    top: -0.5rem;
    margin-left: 0.8rem;
}

.title .content {
    padding-top: 0.75rem
}

h1 {
    font-family: "Barlow", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    margin-bottom: 0.2em;
}

h2 {
    font-weight: normal;
    font-size: 1.5em;
}

.content-container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.content-container.white {
    background: #faf6e8;
    color: #2e2d2b;
    padding: 1.4rem 2.5rem 2.2rem;
    font-size: 1.3em;
    line-height: 130%;
}

.content-container.white:last-child {
    padding-bottom: 4rem;
}

.rules-container {
    width: 100%;
    position: relative;
}

ul.rules {
    width: 100%;
    background: #221e15;
    background-image: url(./stripes.svg);
    background-size: 11%;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 15rem 1.5rem 3rem 4rem;
    font-size: 1.425em;
    color: #faf6e8;
    list-style: none;
}

ul.rules span {
    color: #99907c;
}

ul.rules li {
    line-height: 125%;
    margin-bottom: 0.75em;
    position: relative;
}

ul.rules li::before {
    content: '';
    display: block;
    position: absolute;
    width: 0.35em;
    height: 0.35em;
    background: #ffcc01;
    left: -1em;
    top: 0.43em;
}

ul.rules li:last-child {
    margin-bottom: 0;
}

.rules-container .sign {
    width: 15rem;
    height: 15rem;
    border-radius: 14%;
    position: absolute;
    overflow: hidden;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
    top: -2rem;
}

.logos {
    max-width: 100%;
}

.embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embed .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 375px) {
    h1 {
        font-size: 1.9em;
    }
}

@media (min-width: 768px) {
    .title {
        flex-direction: row
    }

    h1 {
        font-size: 2.85em;
    }
    
    h2 {
        font-size: 1.856em;
    }
    
    .title .content {
        padding-top: 0;
        padding-left: 4rem;
    }

    .title .icon {
        display: block;
    }
    
    .title .icon .main-icon {
        width: 8rem;
        height: 8rem;
    }
    
    .title .icon .icon-part {
        display: none;
    }
}

@media (min-width: 888px) {
    .container {
        padding-top: 12vh;
    }

    .rules-container .sign {
        transform: translateY(-50%);
        left: 0;
        top: 50%;
        width: 13rem;
        height: 13rem;
    }
    
    ul.rules {
        width: 94%;
        left: 3%;
        padding: 4rem 1.25rem 4rem 16rem;
        background-size: 7%;
    }

    .content-container.white {
        background: #faf6e8;
        color: #2e2d2b;
        padding: 1.4rem 7rem;
        font-size: 1.4em;
    }
}