.mybody{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.cont1
{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav
{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 10px;
    color: white;
    font-weight: 600;
}

.nav-item
{
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #bde0fe;
    text-decoration: none;
    color: black;
}

.nav-item:hover
{
    background-color: #BAB700;
    color: black;
    font-weight: 600;
}

.nav-items-between
{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.guide-cont
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.guide-cont h2
{
    text-decoration: underline;
}

.guide
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.sub-guide
{
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5);
}

.color
{
    width: 20px;
    height: 20px;
    border-radius: 2.5px;
}

.color1
{
    background-color: #BAB700;
}

.color2
{
    background-color: red;
}

@media screen and (min-width: 600px) 
{
    .guide-cont
    {
        margin-bottom: -30px;
    }

    .guide
    {
        flex-direction: row;
    }
}