@import url('../css/main.css');

.MainBody {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.MainBody>h1 {
    color: white;
    font-size: 20px;
    margin: 10px;
}

.MainBody>.Rules {
    width: 100%;
    background-color: #1B0E3D;
    color: white;
    padding: 25px;
    box-sizing: border-box;
}

.MainBody>.Rules>h6 {
    font-size: 14px;
    margin: 10px 0px;
}

.MainBody>.Rules {
    font-size: 9px;
}

@media only screen and (min-width: 768px) {
    .MainBody>.Rules {
        font-size: 16px;
    }

}

@media only screen and (min-width: 1024px) {
    .MainBody>.Rules {
        width: 80%;
        background-color: #1B0E3D;
        color: white;
        box-sizing: border-box;
        border-radius: 20px;
        font-size: 16px;
    }

}