@font-face {
  font-family: 'antiqueBootleg';
  src: url('fonts/AntiqueBootleg-Regular.woff2') format('woff2'),
    url('fonts/AntiqueBootleg-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



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

html, body {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.main {
  width: 100%;
  height: 100%;
  position: relative;
}


a {
  color: currentColor;
}

body {
  background-color: rgb(0, 0, 0);
  color: white;
  /* overflow: hidden; */
  height: 100%;
  width: 100%;
  /* display: flex;
  flex-direction: column; */
  line-height: 1.1;
  letter-spacing: 0.2;

  font-family: 'antiqueBootleg', sans-serif;
}



.images-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease; 
}

.images-container .full-image {
  width: 100%;
  height: 100%;
}

.images-container .half-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.images-container img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.personal-info {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}

.smiley-container {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  margin: 2rem;
  box-sizing: border-box;
  position: absolute;
}

.smiley {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.no-download .smiley{
  cursor: default !important;
}
.smiley img {
  width: 100%;
  height: 100%;

}
.divider {
  height: 1.2rem;
}

.image-visible {
  opacity: 1; /* When this class is applied, the images will become visible */
}

@media (max-width: 600px) {
  body {
    font-size: 0.9rem;
  }
  .smiley-container {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    margin: 1rem;
  }

  .divider {
    height: 1rem;
  }

  .personal-info{
    top: 1.7rem;
    left: 1.7rem;
  }


}


a[href^="tel"],
a[href^="mailto"] {
    color: inherit; 
    text-decoration: none; 
}


@media screen and (orientation: portrait) {
  .images-container {
    flex-direction: column;
  }
  .images-container .half-image {
    width: 100%;
    height: 50%;
  }


}

