body {
  background-image: url('https://i.gifer.com/76YS.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  padding: 0;
  margin: 0;
}

h1, h2 {
  color: white;
  font-family: "Courier New", "Lucida Console", monospace;
  text-align: center;
}

.video-section {
  color: white;
  font-family: "Courier New", "Lucida Console", monospace;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
}

/* Nav */
nav {
  text-align: center;
  word-spacing: 30px;
  padding: 10px;
    font-family: "Courier New", "Lucida Console", monospace;
}

/* Layout base */
* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.me {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.me img {
  width: 250px;
  height: 800px;
  margin: 0 auto;
  border: 7px solid white;
}

.me p {
  color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-family: "Courier New", "Lucida Console", monospace;
  color: white;
}

/* Flexbox image row */
.image-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.image-row img {
  width: 250px;
  height: auto;
  border: 5px solid white;
  
  }
  
.tooltip {
    position: relative;
    display: inline-block;
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    border-radius: 6px;
    
    position: absolute;
    z-index: 1;
    bottom: 125%; /* position above the image */
    left: 50%;
    transform: translateX(-50%);
    
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  
div {
  color: white;
  font-family: "Courier New", "Lucida Console", monospace;
  text-align: center;
  margin: 10px 0;
}