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


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

h2 {
    color: lightcoral;
}

button {
    background-color: blueviolet;
    color: aliceblue;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
}
button:hover {
    background-color: rgb(255, 170, 0);
}

img{
    width: 100%;
    height: auto;
}

div {
    height: 200px;
}