* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    background-color: #3AA6B9;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FAF0E4;
    margin-bottom: 3rem;
}

p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #FAF0E4;
}

.p2 {
    font-size: 20px;
    color: rgb(230, 140, 140);
}

#palpites {
    font-size: 24px;
    margin-bottom: 20px;
    color: #CCCCCC;
}

#palpite {
    width: 200px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
    padding: 1rem;
    border: none;
    text-align: center;
    background-color: #FFDEDE;
    font-size: 16px;
}

#palite::placeholder {
    color: #c0b5c4;
    font-size: 16px;
}

#submeter {
    width: 80px;
    height: 34px;
    background-color: #9BCDD2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submeter:hover {
    background-color: #7cb7bc;
}

#submeter:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
}

footer {
    background-color: #FFD0D0;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}