main, article {
    background-color: transparent;
    border: none !important;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content:space-between;
}

section {
    margin: 5px 0px 5px 0px;
}

/* info card */

#abt-container {
    background-color: var(--lightblue);
    padding: 10px;
    font-weight: bold;
    border-top: 10px solid var(--whiteblue);
    border-bottom: 10px solid var(--darkblue);
    border-radius: 25px;
    margin-bottom: 25px;
    margin: auto;
    height: 220px;
    width: 80%;
}

#abt-container h2 {
    margin: 0px;
    color: var(--pink);
    background-color: var(--darkblue);
    border-radius: 20px 5px 5px 20px;
    border: none;
}

#abt-avatar {
    width: 35%;
    float: left;
    padding: 10px;
    max-width: 150px;
}

#abt-info {
    width: 60%;
    float: right;
    margin-right: 15px;
}

#sneaky-link a {
    color: var(--blackblue);
    font-weight: bold;
    text-decoration: none;
}

#sneaky-link a:hover {
    cursor: url(https://bloopywoopy.neocities.org/cursor/pointer.png), pointer;
    color: #252170;
}

#abt-info .list {
    list-style-type: none;
    border-bottom: 5px dotted var(--yellow);
    color: var(--blackblue);
}

@media only screen and (max-width: 800px) {
    #mobile {
      width: 100% !important;
    }
    #abt-container {
        width: 100%;
    }
}