@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: none;
    font-family: 'Courier New', Courier, monospace;
    font-family: 'Architects Daughter', cursive;
    scroll-behavior: smooth;
    text-decoration: none;
}
body::-webkit-scrollbar{
  display: none;
}
h1{
  z-index: 0;
}
.fixed-button {
  position: fixed;
  right: 20px;
  width: 20px;
  height: 20px;
  top: 85%;
  background-color: #b36500;
  color: white;
  padding: 18px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-button .fa{
  font-size: 22px;
}
.options-container {
  display: none;
  transition: all 0.3s ease; 
  position: fixed;
  right: 10px;
  top: 60%;
  transform: translateY(-50%);
  border-radius: 5px;
  z-index: 999;
}
.social-icon, .contact-option {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
}

.social-icon:hover, .contact-option:hover {
  color: #007bff;
}
.options-container .fa {
  padding: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 15px;
  border-radius: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.options-container .fa-facebook{
    background: #3b5998;
    color: white;
}
.options-container .fa-youtube{
    background: #bb0000;
    color: white;
}
.options-container .fa-instagram{
    background: #ff0080;
    color: white;
}
.options-container .fa-twitter {
  background: #1da1f2;
  color: white;
}
.options-container .fa-linkedin {
  background: #0077b5;
  color: white;
}
.options-container .fa-pinterest {
  background: #a30000;
  color: white;
}

@media(max-width:767px) {
  .options-container .fa {
      font-size: 25px;
      width: 20px;
      height: 20px;
      padding: 15px 15px;
  }
  .options-container {
    display: none;
    position: fixed;
    right: 7px;
    top: 59%;
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: 999;
  }
  .fixed-button {
    position: fixed;
    right: 20px;
    width: 20px;
    height: 20px;
    top: 85%;
    background-color: #ff9900;
    color: white;
    padding: 16px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fixed-button .fa{
    font-size: 20px;
  }
  #preview {
    width: 100vw;
    height: auto;  
  }
  #preview img{
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    z-index: 999;
    background-color: rgba(225,225,225,0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
}
#preview {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;

}
#preview img{
  width: 500px;
  height: 500px;
  object-fit: contain;
  z-index: 999;
  background-color: rgba(225,225,225,0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}