@font-face {
    font-family: YAGIZA;
    src: url('./YAGIZA__.TTF');
}

@font-face {
    font-family: DS-Digital;
    src: url('./ds_digital/DS-DIGI.TTF')
}

@font-face {
    font-family: Dangam;
    src: url('./ChangwonDangamAsac-Bold_0712.ttf')
}

@font-face {
    font-family: fairfax;
    src: url('./FairfaxItalic.ttf')
}

@font-face {
    font-family: munro;
    src: url('./munro.ttf')
}

@font-face {
    font-family: apple_garamond;
    src: url('./apple_garamond/AppleGaramond.ttf')
}

@font-face {
    font-family: tempting;
    src: url('./tempting/Tempting\ -\ PERSONAL\ USE\ ONLY.otf')
}

.bottom-header {
    height: 300px;
    display: inline;
    gap: 20px;
}

#pic1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#pic2 {
    position: absolute;
    float: left;
    display: block;
    margin: auto;
    background-color: seagreen;
    border: 2px solid #000;
}

.window{
    background-color: #fff;
    margin: auto 30px auto 30px;
    padding: 30px;
    border: 3px solid #000;
    border-top: 1.5px solid #000;
}

.window p{
    position: relative;
    font-family: "Apple Garamond Light";
    margin: 10px auto 5px 20px;
    font-size: 17pt;
}

body {
    background: url("./background_2.png");
    background-size: cover;
    margin-top: 70px;
    margin-bottom: 70px;
}

h2{
    font-family: tempting;
    font-style: italic;
    font-size: 25px; 
    margin: 30px 10px 10px 10px;
    color: #ffc3c3;
    text-shadow: 2px 3px 8px black;
    position: relative;
}

.flower-icons {
    overflow: hidden;
    position: relative;
    display: block;
    float: left;
    margin: -65px auto auto 12%;
    opacity: .5;
}

.button{
    width: 250px;
    margin-bottom: 10px;
}

.button:hover{
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
    opacity: 0.4;
    width: 275px;
    transition: left 0.5s ease-out;
}

.header{
    overflow: hidden;
    margin: 10px 30px -40px 30px;
    padding: 1px auto;
    background-image: linear-gradient(to right, #89B9AD, #fff);
    border: 3px solid #000;
    border-bottom: 1px solid #000;
}

.logo {
    overflow: hidden;
    position: absolute;
    left: 50px;
    top: 70.25px;
    width: 60px;
    float: left;
    z-index: 99;
}

#icons {
    overflow: hidden;
    position: relative;
    float: right;
    top: -50px;
    right: 10px;
    width: 120px;
}

.header p{
    color: black;
    text-align: left;
    padding: 12px;
    text-decoration: none;
    font-family: munro;
    font-weight: bold;
    font-style: normal;
    font-size: 30px;
    border-radius: 4px;
    margin: auto 60px;
}

.header-bottom{
    overflow: hidden;
    margin: auto 30px auto 30px;
    background-color: rgb(160, 160, 160);
    border-bottom: 1.5px solid #000;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    border-top: 3px solid #000;
}

.header-bottom a {
    float: left;
    color: black;
    text-align: center;
    padding-left: 42px;
    padding-right: 42px;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    border-radius: 2px;
    font-family: YAGIZA;
    letter-spacing: 2px;
}

.header-bottom a:hover {
    background-color: rgb(120, 120, 120);
}

.header-bottom a.active {
    background-color: #FFEBD8;
    color: white;
}

/* Graphic #2 animation and style */
.body-gif {
    display: flex;
    position: relative;
    align-items: right;
    justify-content: right;
    font-size: 70px;
    font-family: YAGIZA;
    font-weight: 800;
    margin: -300px 100px 50px auto;
  }

  section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 310px;
    border: 2px solid #000;
    animation-duration: 5s;
    animation-name: cube-rotate;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }
  
  /* Isolation creates a new stacking context for mix-blend-mode. See: https://developer.mozilla.org/en-US/docs/Web/CSS/isolation */

  .isolate {
    isolation: isolate;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
  }
  
  @keyframes cube-rotate {
    from {
      transform: perspective(600px) rotate3d(0.6, 0.05, 0.2, 0deg);
    }
  
    to {
      transform: perspective(600px) rotate3d(0.9, 0.05, 0.2, 35deg);
    }
  }
  
  @keyframes shimmer {
    from {
      filter: contrast(190%) brightness(500%);
    }
  
    to {
      filter: contrast(190%) brightness(130%);
    }
  }
  
  .noise {
    width: 100%;
    height: 100%;
    padding: 8px;
    background: linear-gradient(24deg, rgba(196, 65, 83, 0.1), rgb(233, 115, 131)), url("data:image/svg+xml,%3Csvg viewBox='0 0 300 310' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation-duration: 5s;
    animation-name: shimmer;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: antiquewhite;
    mix-blend-mode: multiply;
  }
  
  /* Special case Chrome. mix-blend-mode is treated differently. Works best in Safari! */
  @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .overlay {
      opacity: 0.6;
    }
  }

  #logo-for-gif {
    position: relative;
    float: right;
    width: 70px;
    margin: -80px 10px 0px 0px;
  }