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

/**body{
    background: ;
    font-family: 'Courier Prime', monospace;
    color: var(--ink);
    overflow-x: hidden;
}
    **/

#intro{
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: aliceblue;
}

.case-badge{
    width: 120px;
    height: 120px;
    border: 3px solid #c0392b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c0392b;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    position: relative;

}

.case-badge::before{
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid #c0392b;
    
    border-radius: 50%;
}

@keyframes pulse {
    0%,
    100%{
        opacity: 1;
    }
    50%{
        opacity: 0.6;
    }
}

.intro-title{
    font-family: 'Oswald', sans-serif;
    color: #888;
    font-size: 11px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
}

.intro-tagline{
    font-family: 'Special Elite', cursive;
    color: #c0392b;
    font-size: 22px;
    text-align: center;
    max-width: 500px;
    line-height: 1.4;
}

#typewriter{
    font-family: 'Courier Prime', monospace;
    color: #4a4a4a;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    min-height: 20px;
}

#typewriter .cursor{
    animation: blink 0.8s step-end infinite;
}

@keyframes blink { 50% {opacity: 0;}}

#open-file-btn{
    margin-top: 20px;
    background: transparent;
    border: 1px solid #c0392b;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #c0392b;
}

#open-file-btn:hover{
    background: #c0392b;
    color: #0a0a0a;
}

#main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    color: #fff;
    width: 100%;
    height: 100%;
    background-color: #111111;
    background-image: linear-gradient(32deg,rgba(8, 8, 8, 0.74) 30px, transparent);
    background-size: 60px 60px;
    background-position: -5px -5px;
    padding-bottom: 50px;

}

.evidence{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.evidence h1{
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 50px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
}

/**#main h1{
    font-family: 'Oswald', sans-serif;
    color: #c0392b;
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
**/

#case-info{
    border-radius: 30px;
    background: #212121;
   /** box-shadow: 15px 15px 30px rgb(207, 10, 10),
                -15px -15px 30px rgb(231, 6, 6);
  **/
    border: 1px solid #381111;
    display: flex;
    padding: 30px;
    min-height: 300px;
    width: 70%;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-radius: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.subject-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.subject-info .c-number{
    font-family: 'Oswald', sans-serif;
    color: #888;
    font-size: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;

    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: lighter;
    margin-bottom: 15px;
}

#main .subject-info .name{
    font-family: 'Special Elite';
    color: #c0392b;
    font-size: 40px;

}

#main .subject-info h2{
    color: #b8b8b8;
    font-weight: 400;
}

.subject-info .alias{
    font-family: 'Special Elite', cursive;
    font-style: italic;
    font-weight: lighter;
    margin-top: -10px;
    margin-bottom: 15px;
}

.subject-info h2{
    font-family: 'Special Elite', cursive;
}

.exhibit{
    border-radius: 30px;
    background: #212121;
 /**box-shadow: 15px 15px 30px rgb(207, 10, 10),
             -15px -15px 30px rgb(231, 6, 6);

/**
    border-radius: 0.5rem;
  background: #606c88;
  background: -webkit-linear-gradient(to right, #3f4c6b, #606c88);
  background: linear-gradient(to right top, #3f4c6b, #606c88);
  padding: 1rem;
  box-shadow: 0px 87px 78px -39px rgba(0,0,0,0.4);

  **/
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
    width: 70%;
    align-items: center;
    margin-top: 40px;
    font-family: 'Special Elite', cursive;
    font-weight: 400;
    text-align: justify;
}

.exhibit h2{
    color: #ff3821
}

.exhibit h3{
    font-family: 'Oswald', sans-serif;
    color: #888;
    font-size: 15px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
}

.exhibit p{
    line-height: 30px;
}

.exhibit button{
    margin-top: 20px;
    background: transparent;
    border: 1px solid #c0392b;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #c0392b;
}

.exhibit button:hover{
    background: #c0392b;
    color: #0a0a0a;
}

.exhibit-2{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items:start;
    justify-items: left;

}

.exhibit-3{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.book {
  position: relative;
  border-radius: 10px;
  width: 350px;
  height: 350px;
  background-color: whitesmoke;
  -webkit-transform: preserve-3d;
  -ms-transform: preserve-3d;
  transform: preserve-3d;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
}

.book p{
    margin-left: 50px;
    padding-right: 40px;
}

.cover {
  top: 0;
  position: absolute;
  background-color: #eedeba;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  box-shadow: 1px 1px 5px #756a6a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.book:hover .cover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotatey(-80deg);
  -ms-transform: rotatey(-80deg);
  transform: rotatey(-80deg);
}

.cover p, .cover h2{
    text-align: center;
}


.icons{
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}


