@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
}

body {
    height: 100vh;
    background: linear-gradient(to right, #4b0c5e, #5c0fc0);
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: auto;
}

header {
    margin-top: 20px;
}

.nickname {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

header a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.title {
    margin-top: 40px;
}

.title_text {
    font-size: 12vw;
    color: #a3a3a3a4;
    font-weight: bold;
}

.title_transparent {
    font-size: 14vw;
    color: rgba(255, 255, 255, 0.63);
    z-index: -1;
}

.description {
    padding-top: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.description_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.description_text {
    font-size: 1rem;
    line-height: 1.5;
}

.action {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    padding: 15px;
    color: #ffffff;
    background: linear-gradient(to right, #158fd6, #1666c2);
    font-size: 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.pikachu-image {
    width: 80%;
    max-width: 280px;
    margin: 30px auto;
    display: block;
}

.footer_text {
    margin-top: 20px;
    color: rgb(150, 146, 146);
    font-size: 0.9rem;
}

/* Responsividade para telas maiores */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
    .title_text {
        font-size: 10vw;
    }
    .description {
        font-size: 1.4rem;
    }
    .action {
        font-size: 1.8rem;
    }
}
