@font-face {
  src: url(/Fonts/Helvetica/helvetica-rounded-bold-5871d05ead8de.otf);
  font-family: helround;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("/images/IMG-20211014-WA0017.jpg");
  height: 100%;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin: 20px; */
}

.contain {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.magic {
  font-family: helround;
  font-size: 40px;
  font-weight: bold;
  color: #ffff;
  text-shadow: 20px 15px 7px black;
}

.image-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 95%;
  /* background-color: blue; */
  height: 50vh;
  margin: 20px;
  overflow: hidden;
  cursor: pointer;
}

.home-pic {
  max-width: 300px;

  height: 300px;
  object-fit: cover;
  transform: scale(1);
  transition: 0.6s;
}
.home-pic.about {
  max-width: 100%;
}
.top {
}

.home-pic.portfolio {
  max-width: 100%;
}
.home-pic:hover {
  transform: scale(1.2);
}

.tooltip {
  position: relative;
}
.tooltiptext {
  visibility: hidden;
  width: 150px;
  color: #a8dadc;

  background-color: #1d3557;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-size: 16px;

  position: absolute;
  z-index: 1;
  top: -5px;
  right: 105%;
  margin-right: 20px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  transition: 0.3s;
}
