/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

h1{
    background-color: tomato;
    color: blue;
    padding: 40px;
    text-align: center;
}

body {
  background-color: burlywood;
  color: blue;
  font-family: Verdana, Helvetica, sans-serif;
}

.wrapper {
  height: 250px;
  padding: 10px;
  display: flex;
  gap: 10px;
  text-align: center;
  font:
    28px "Marker Felt",
    "Zapfino",
    cursive;
  border: 6px solid mediumturquoise;
}

div {
  flex: 1;
}

.boxLeft {
  background-color: tomato;
  color: white;
  outline: 2px solid darkred;
}

.boxRight {
  background-color: blue;
  outline: 4px dashed #6e1478;
  color: red;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #8f8;
  text-decoration: underline wavy #8f8;
  text-shadow: 2px 2px 3px black;
}

.boxBotLeft{
  background-color: yellow;
  outline: 4px dashed blue;
}

