body {
    background-color: rgb(43, 30, 118);
}

.charicon img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid black;
}

.charname p {
    font-family: monospace;
    font-weight: bolder;
    font-size: 20px;
    background-color: rgb(214, 213, 159);
    opacity: 0.8;
    padding: 3px;
    text-align: center;
    border-radius: 10px;
}

.standuser {
    text-align: center;
    margin-top: 5px;
    font-family: monospace;
    font-size: 18px;
    color: antiquewhite;
}

.conteudo {
    background-image: url("/2bim/imgs/patternjojo2.jpeg");
    background-repeat: repeat;
    background-size: 500px 500px;
    padding: 20px;
    border: 10px solid rgb(22, 6, 45);

    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

    margin-left: 20px;
    margin-right: 20px;
    flex-wrap: wrap;
}

.conteudoi {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(92, 58, 136);
    border: 3px solid black;
    flex-wrap: wrap;
    box-shadow: 0px 1px 10px rgb(0, 0, 0);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow-wrap: break-word;
    width: 208px;
}
.conteudoi:target {
    box-shadow: 0px 0px 30px #e85cac;
    animation: sumir 10s forwards;
}
@keyframes sumir {
    from {
        box-shadow: 0px 0px 30px #f75db4;
    }
    to {
        box-shadow: none;
    }
}
.info {
    display: none;
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 210px;
    background-color: rgb(244, 235, 226);
    border: 4px solid rgb(0, 0, 0);
    border-radius: 20px;
    color: rgb(0, 0, 0);
    display: none;
    text-align: center;
    z-index: 1000;
}

.conteudoi:hover .info {
    display: block;
}

.conteudoi:hover {
    transform: translateY(-10px);
    z-index: 100;
}

.sc {
    font-family: monospace;
    color: aliceblue;
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.sc1 {
    font-family: monospace;
    color: #e85cac;
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}
html {
    scroll-behavior: smooth;
}
@media (max-width: 1280px) {

    .conteudo {
        gap: 20px;
    }

    .img1 {
        width: 95%;
        height: auto;
    }
}

@media (max-width: 1024px) {

    .top nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
    }

    .caixaDeBusca {
        width: 80%;
    }

    #procuraInput {
        width: 100%;
    }

    .conteudo {
        padding: 15px;
        gap: 20px;
    }

    .conteudoi {
        width: 180px;
    }

    .charicon img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .top {
        min-height: auto;
        padding: 20px 10px;
    }

    .top nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .jojotop {
        width: 110px;
        height: auto;
    }

    .caixaDeBusca {
        width: 90%;
        max-width: 400px;
    }

    .procuraMain {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    #procuraInput {
        width: 70%;
        font-size: 12px;
    }

    .top ul {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .b1 {
        width: 100px;
        height: 35px;
        font-size: 12px;
        margin-top: 0;
    }

    .conteudo {
        gap: 15px;
        padding: 10px;
        margin: 10px;
    }

    .conteudoi {
        width: 160px;
        padding: 10px;
    }

    .charicon img {
        width: 140px;
        height: 140px;
    }

    .charname p {
        font-size: 16px;
    }

    .standuser {
        font-size: 14px;
    }

    .info {
        top: 180px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .top nav {
        flex-direction: column;
        align-items: center;
    }

    .caixaDeBusca {
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }

    .procuraMain {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    #procuraInput {
        width: 90%;
        font-size: 11px;
    }

    .top ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .conteudoi {
        width: 90%;
        max-width: 250px;
    }

    .charicon img {
        width: 120px;
        height: 120px;
    }

    .charname p {
        font-size: 14px;
    }

    .standuser {
        font-size: 12px;
    }

    .info {
        top: 160px;
        font-size: 12px;
        padding: 10px;
    }
}