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

body {
    background-color: #FFD400;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    position: relative;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #5c2e00;
}

.logo img {
    width: 30px;
    height: 30px;
}

h1 {
    font-size: 80px;
    color: white;
    margin-top: 30px;
    font-weight: 900;
    letter-spacing: 3px;
}

.pikachu {
    width: 300px;
    margin: 20px 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

button {
    background-color: #fff;
    color: #5c2e00;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #ffe97a;
}

footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    font-size: 14px;
    color: #5c2e00;
}

.help {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: #fff;
    color: #5c2e00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

 
.button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .button:hover {
    background-color: #ffe97a;
  }
