/* Write your CSS code in this file */
html {
    background-color: #D171C3;
}

h1 {
    font-family: 'Bungee', cursive;
    color: #f8ce12;
    font-size: 60px;
    text-align: center;
    background-color: #d744c1c6;
}
h2 {
    color: #f8ce12;
    font-family: 'Bungee', cursive;
    font-size: 25px;
    background-color: #d744c1c6 ;
}

ul li {
    font-family: 'Bungee', cursive;
    font-size: 17px;
    color: white;
    background-color: #d744c1c6;
    width: fit-content;
    block-size: fit-content;
}

p {
    font-family: 'Bungee';
    font-size: 21px;
    background-color:  #00DBCD;
    border-radius: 1rem;
    padding: 6px;
    color: white
}

.message {
    color: white;
}

input {
   background-color: #d744c1c6;
   border: solid  white;
   padding: 4px;
   border-radius: 0.3rem;
}

input::placeholder {
    font-weight: bold;
    color: white;
}

.center {
    text-align: center;
}

button {
    background-color: #00DBCD;
    border-radius: 0.5rem;
    color: white;
    border: solid white;
    padding: 5px;
}

button:hover {
    background-color: #69E0D9;
} 