 * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            cursor: url("https://megagifsgueis.neocities.org/static/general/cursor.gif"), auto !important;
        }

body {
    background-color: #f9f927;
    background-image:
        url('https://megagifsgueis.neocities.org/static/general/pattern.png'),
        url('https://megagifsgueis.neocities.org/static/general/pattern.png');
    background-repeat: repeat, repeat;
    background-position: 0 0, 80px 64px;
}

.banner {
    position: relative;
    width: 720px;
    margin: 40px auto 20px auto;
}

.leite-caindo {
    width: 683px;
    position: absolute;
    top: 109px;
    left: 37px;
    z-index: 0;
}

.banner-img {
    width: 720px;
    position: relative;
    z-index: 1;
}

.corpo {
    width: 720px;
    margin: auto auto;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.sidebar {
    margin-bottom: 20px; 
    padding: 5px;
    width: 150px;
    height: max-content;
    background: linear-gradient(to bottom, #fff5db 0%, #ffffff 10%, #ffffff 90%, #fff5db);
    border-radius: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.caixa-titulo {
    background: linear-gradient(to bottom, #df9d34, #d1371e);
    width: 100%;
    height: max-content;
    padding: 2px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    text-align: center;
    font-family: Comic Sans MS;
    color: white;
    margin-bottom: 5px;
}

.caixinha-btn {
    width: 88px;
    transition: transform 150ms ease;
}

.caixinha-btn:hover {
    transform: scale(1.1);
}

.secao-piadas {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.conteudo {
    margin-bottom: 20px;
    width: 565px;
    height: max-content;
    padding: 5px;
    background: linear-gradient(to bottom, #fff5db 0%, #ffffff 10%, #ffffff 90%, #fff5db);
    border-radius: 16px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.secao-boas-vindas {
    font-family: Comic Sans MS;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    color: #333;
}

#area-gifs {
    text-align: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.interagivel img {
    transition: all 0.2s ease;
}

.interagivel:hover img {
    transform: scale(1.1) rotate(1deg);
}

.achievement {
    position: fixed;
    bottom: 5px;
    right: 20px;
    height: 60px;
    opacity: 0;
    transform: translateY(120%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
}

.mostrar-achievement {
    opacity: 1;
    transform: translateY(0%);
}