* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.quadro {
    width: 100%;
    max-width: 800px;
    background-color: #0d0d0d;
    border: 10px solid #2ecc71;
    padding: 20px;
}

.barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid #2ecc71;
    font-size: 14px;
}


.url {
    color: #ffffff;
}

.secao-principal {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

h1 .title,
h2 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.textooo h2 {
    color: #2ecc71;
    text-align: center;
}

.avatar-foto {
    border: 2px solid #ff4757;
    padding: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.avatar {
    width: 130px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.urlSLA {
    color: #2ecc71;
    font-weight: bold;
    margin-bottom: 0px;
}

.bioME {
    font-size: 13px;
    line-height: 1.4;
    color: #a8a8a8;
    margin-bottom: 15px;
}

.linksTwo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.linksTwo a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 4px;
    border: 1px solid #333;
    margin-bottom: 5px;
    background: #141414;
}

.linksTwo a:hover {
    border-color: #2ecc71;
    color: #2ecc71;
}

.TEXTO {
    color: #2ecc71;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #333;
}

.divisor {
    color: #2ecc71;
    text-align: center;
    margin: 15px 0;
    letter-spacing: 3px;
}

.coiso h2 {
    border-bottom: 1px solid #2ecc71;
    padding-bottom: 5px;
}

.coiso p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.coiso strong {
    color: #2ecc71;
}

.fulano-de-tal {
    margin-bottom: 20px;
    background: #141414;
    padding: 10px;
    border-left: 3px solid #ff4757;
}

.fulano-de-tal h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.fulano-de-tal p {
    font-size: 12px;
    line-height: 1.4;
    color: #cccccc;
}

.bannerTwo img {
    width: 100%;
    height: auto;
}

.albuns-de-musica {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    gap: 10px;
    margin-bottom: 25px;
    background: #141414;
    padding: 15px;
    border: 1px solid #333;
}

.albuns-de-musica {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.foto img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #2ecc71;
}

.perfil-final {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px dashed #2ecc71;
    padding-top: 20px;
}

.informacao-footer {
    width: 65%;
}

.informacao-footer h2 {
    color: #2ecc71;
}

.informacao-footer p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.informacao-footer strong {
    color: #ffffff;
}

.banners-finais {
    display: flex;
    gap: 10px;
}

.banners-finais img {
    width: 50%;
    height: auto;
}

button {
    color: white;
    text-decoration: none;
    font-size: 25px;
    border: none;
    background: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

button::before {
    margin-left: auto;
}

button::after,
button::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #2ecc71;
    display: block;
    transition: 0.5s;
}

button:hover::after,
button:hover::before {
    width: 100%;
}

.quadro,
.barra,
.secao-principal,
.avatar-foto,
.title,
.urlSLA,
.bioME,
.TEXTO,
.textooo,
.banner,
.divisor,
.coiso,
.fulano-de-tal,
.albuns-de-musica,
.foto,
.perfil-final,
.informacao-footer,
.banners-finais {
    opacity: 0;
    transform: translateY(50px);
    animation: entradaSuave 1.5s ease-out forwards;
}

@keyframes entradaSuave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.foto {
    width: 20%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

@media (min-width: 320px) and (max-width: 768px) {
  .secao-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
  }

    .albuns-de-musica {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
    }
}