body {
    max-width: 800px !important;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0A0A0A !important;
    margin: auto;
    padding: 0px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
}

#header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#header p {
    padding: 0px;
    margin: 15px 0px;
}

#header img {
    width: 300px;
    margin-right: 30px;
}

#title {
    font-size: 3rem;
    font-weight: 600;
}

#title p:last-of-type {
    color: red;
}

#subtitle {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

#question {
    text-align: center;
    width: 100%;
    margin: 20px 0px;
    font-size: 2rem;
}

#login {
    text-align: center;
}

#xstep {
    color: red;
}

.container {
    margin: 10px 0px;
    text-align: justify;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 800;
    overflow: hidden;
}

.icon {
    min-width: 100px;
    width: 100px;
    height: 100px;
    background-image: url("./ballon.png");
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 3.5rem;
    color: red;
    font-weight: bold;
    padding-left: 35px;
}

.content {
    flex: 1;
    padding-left: 20px;
}

.content img {
    max-width: 100%;
    max-height: 100%;
}

.content p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
}

.step-img {
    max-width: 800px;
    overflow: hidden;
}

.step-img img {
    width: 100%;
}

@media screen and (max-width: 800px) {
    #header {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #header p {
        width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    #header img {
        height: 150px;
        margin-right: 0px;
    }

    #subtitle {
        font-size: 1.5rem;
    }

    #action button {
        width: 100%;
    }
}

