
h1 {
  font-family: sans serif;
  font-size: 3em;
  text-align: center;
  margin: 0 0 10px 0;
  background-color: #f0def3;
  padding: 20px 5px 20px 5px;
}

h2 {
    color: #D3D3D3;
    font-family: 'Arial', sans-serif;
    margin: 10px 0;
    text-align: center;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #45a049;
}

.footer {
  margin-top: auto;
  text-align: center;
  background-color: #f0def3;
  padding: 20px 5px 20px 5px;
}

body {
  background-image: url("bg02.gif");
  background-repeat: repeat;
}

.container {
  background-color: #bc54fa;
  padding: 40px;
  margin: 40px 50px ;
  font-family: serif;
  font-weight: bold;
}

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}

.fortune-teller {
    text-align: center;
}

.color, .flap {
    width: 100px;
    height: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
    color: #000;
    margin: 5px;
}

.color:hover, .flap:hover {
    transform: scale(1.1);
}

#fortune {
    margin-top: 20px;
    font-size: 20px;
    color: darkblue;
}
