@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&display=swap');

* {
  box-sizing: border-box;
}

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

.header {
  text-align: center;
  padding: 32px;
}


.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.column img {
  margin-top: 12px;
  display: block;
  position: relative;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 80%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 70px;
  text-align: center;
  font-family: "Edu AU VIC WA NT Hand", cursive;
}

img {
  width: 100%;
  transition: opacity 0.3s ease;
}

img:hover {
  opacity: 0.8;
}

.img-container {
  position: relative;
  display: inline-block;
}

.img-container:after {
  content: attr(title);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  height: 100px;
  font-size: 50px;
  font-family: "Edu AU VIC WA NT Hand", cursive;
}

.img-container:hover:after {
  visibility: visible;
  opacity: 1;
}
