@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab&display=swap');


  
body {
    margin: 0;
    background-color: #f1f1f1;
 
}

.top-container, .sidebar2 {
    position: fixed;
    left: 0;
    width: 25%;
    height: 50vh;
    background-color: #f1f1f1;
    color: black;
    box-sizing: border-box;
   
    
    
}

.top-container {
    
        position: fixed;
        top: 0;
        left: 0px;
        width: 25%;
        height: 50vh;   
        background-color: #f1f1f1;
        box-sizing: border-box;
        border-right: 1px solid black;
}

.top-container p {
    margin-top: 35%;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 1.5; /* Adjust line-height if necessary */
    font-size: 2.2rem; /* Adjust font-size if necessary */
    font-family: 'Josefin Slab', serif;
    color: black;
}
.sidebar2 {
    top: 50vh;
    
}

.sidebar2 img {
    box-sizing: border-box;
    width: 100%;
    height: 100%; /* Set the height to be the same as the width */
    display: inline-block;
    border-top: 1px solid black;
    object-fit: cover;
    border-right: 1px solid black;
}



#banner {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: #000;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px solid black;
    height: 50px;
    line-height: 1.6;
    font-family: 'Josefin Slab', serif;
    font-size: 4rem;
    z-index: 1;
}

#banner p {
    margin: 0;
    font-size: 1.5rem;
}

#content {
    margin-left: 30%; 
    box-sizing: border-box;
    margin-top: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: 6rem;
    position: absolute; /* Changed to absolute positioning to fix "socials" tab */
    top: 0;
    z-index: 0;
    opacity: 1;
    
}

#content a {
    text-decoration: none;
    color: black;
}



@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }


#spin img{
    filter: invert(100%);   

}

.socials{
    position: fixed;
    right: 0;
    width: 70px;
    height: 100vh;
    background-color: #f1f1f1;
    color: black;
    border-left: 1px solid black;
    overflow: visible;
    top: 50px;
    
}

.socials p{
    font-size: 2.2rem; 
    font-family: 'Josefin Slab', serif;
    color: black;
    transform: rotate(90deg);
    white-space: nowrap; /* stopped words from stacking */
    margin-top: 100px;
    opacity: 1;
}


.circle {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #000; /* Set the border to create the outline */
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out; /* Add a smooth transition effect */
}

.socials:hover .circle {
    background-color: #000; /* Fill in the circle on hover */
}

.harakiri:hover {
    color: rgb(218, 9, 9);
}

.thehunt:hover{
    color: rgb(107, 31, 31);
}

.worstperson:hover{
    color: green;
}

.closeup:hover{
    color: rgb(190, 129, 139);
}



.cityofgod:hover{
    color: rgb(185, 185, 4);
}

.chungkingexpress:hover{
    color: rgb(84, 182, 214);
}

.mother:hover{
color: purple;

}

.ladyonfire:hover{
color:orange
}



.harakiriImage, .harakiriText {
    opacity: 0;
    transition: opacity 0.2s ease-in;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in;
    
}


.harakiriImage.visible, .harakiriText.visible{
    opacity: 1;
}

