body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative; 
    height: 100vh; 
    overflow-x: hidden; 
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/bg.jpg'); 
    background-size: cover; 
    background-position: center; 
    opacity: 0.5; 
    z-index: -1; 
}

header {
    background-color: #0f102e8f;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.header-icon {
    height: 50px; 
    width: auto; 
    margin: 0 15px; 
}

.header-title {
    flex-grow: 1; 
    text-align: center; 
}

h1 {
    margin: 0; 
}

.header-link {
    position: relative;  
    display: inline-block;  
}

.header-link .hover-text {
    position: absolute;
    bottom: -20px;
    left: 50%;  
    transform: translateX(-50%);  
    display: none;  
    white-space: nowrap; 
    background-color: black; 
    color: white; 
    padding: 5px; 
    border-radius: 5px;  
    z-index: 10; 
}

.header-link:hover .hover-text {
    display: block; 
}

h2 {
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;

}

.introduction h3 {
    background-color: white;
    font-size: 20px;
    padding: 10px; 
    margin: 10px 0; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

#movieAudIcon {
    height: 50px; 
    width: auto;  
    vertical-align: middle; 
}

#tagsContainer {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    min-width: 300px;
    max-width: 80%;
    min-height: 100px;
    background-color: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    border-radius: 10px;
    z-index: 10;
}


.tag {
    padding: 10px 15px;
    color: #0f102e;
    margin-bottom: 10px; 
    font-size: 15px;
    font-weight: bold; 
    border-radius: 20px; 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.tag:hover {
    background-color: #2980b9; 
    color: #ddeeff; 
    transform: scale(1.1); 
}

.review {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-poster {
    height: 80px; 
    width: auto; 
    margin-left: 20px; 
}


.review:hover {
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.double-happiness {
    background-color: #26532B;
}

.saving-face {
    background-color: #254E70;
}
    
    
  
.halving-the-bones {
    background-color: #8E8358; 
}

.picture-bride {
    background-color: #5D2E46;
}

.in-between-days {
    background-color: #2B3D41; 
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.button-link:hover {
    background-color: #2980b9;
}
  