
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


h1 {
    color: teal;
    text-transform: uppercase;
}

h2 {
    color: lightcoral;
}

p {
    color: rgb(0, 0, 0);
}

button {
    background-color: rgb(57, 241, 12);
    padding: 10px 30px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

Button:hover {
    background-color: rgb(244, 244, 247);
}

div {
    height: 200px;
}