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

body {
   font-family: serif;
    background-color: #e3d7af;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.logo {
    display: block;
    margin: 0 auto 40px;
    width: 600px;
}
header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3d7af;


}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

header p {
    font-size: 1rem;
    color: #666;
}
header:hover {
    height: 200%;
    color: #ffffff;
    font-size: smaller;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: crosshair;
    display: url('assets/hover-sound.flac') 0.5s;
}
header:hover:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: x-large;
    font-family: cursive;
    color: #ff0000;
    opacity: 0.8;
}
main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.section h2 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

video {
    width: 80%;
    height: auto;
    border-radius: 8px;
    background-color: #000;
    display: block;
    margin: 0 auto;
    border: none;
    cursor: pointer;
}
video:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
video:hover:after {
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.audio-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.audio-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.audio-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

audio {
    width: 100%;
}

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

.container {
  padding: 2rem;
}

.split-image-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  background-image: url("assets/logo.png");
  background-size: 300px 300px;
  transition: transform 0.3s ease;
}

.quadrant-1 {
  top: 0;
  left: 0;
  background-position: top left;
}

.quadrant-2 {
  top: 0;
  right: 0;
  background-position: top right;
}

.quadrant-3 {
  bottom: 0;
  left: 0;
  background-position: bottom left;
}

.quadrant-4 {
  bottom: 0;
  right: 0;
  background-position: bottom right;
}

.split-image-container:hover .quadrant-1 {
  transform: translate(-10px, -10px);
}

.split-image-container:hover .quadrant-2 {
  transform: translate(10px, -10px);
}

.split-image-container:hover .quadrant-3 {
  transform: translate(-10px, 10px);
}

.split-image-container:hover .quadrant-4 {
  transform: translate(10px, 10px);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 1920px) {
    .container {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
}
