* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #1b1b1b;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.logo {
    font-weight: bold;
    color: #b4ff39;
}

.btn {
    background-color: #b4ff39;
    color: black;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    align-content: center;
}

/* SOCIAL */

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 30px;
}

.social img {
    background-color: #b4ff39;
    color: black;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* MAIN */

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.content h1 {
    font-size: 48px;
}

.content span {
    color: #b4ff39;
}

.content p {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

/* IMAGEM */

.image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

/* FOOTER */

footer {
    background-color: #1b1b1b;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}