body {
    background-image: url("../images/bg2.gif");
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
    color: white;
}


.layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 0px solid white;
}

.left {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; 
  
}

.right {
  flex: 1;
  text-align: center;
}


.center {
  flex: 3;
  text-align: center;
  max-width:600px;
}

.centerpage {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;

}



.bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 0px solid white;
  padding: 10px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: flex-start;
}

.column {
  padding: 10px;
  text-align: center;

}

.section {
  background: hotpink;
  color:black;
  padding: 5px;
  margin-bottom: 10px;
  font-weight:bold;
  text-align: center;
}

a {
  color: lightblue;
  text-decoration: none;
}

a:hover {
  background: black;
  color: white;
}
