@font-face {
    font-family: 'Architect'; 
    src: url('fonts/ballmer.otf') format('truetype');
}

@font-face {
    font-family: 'OpenSans'; 
    src: url('fonts/OpenSans_Condensed-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'hammer'; 
    src: url('fonts/HammersmithOne.ttf') format('truetype');
}


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

body {
    font-family: "OpenSans";
    background-color: #2a363b;
    color: #eae3d0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.text-section {
    flex: 1;
    padding: 20px;
}

.text-section h1 {
    font-family: 'Architect'; 
    font-size: 5rem;
    color: #f7e7c5;
    margin-bottom: 20px;
}

.text-section h2 {
    font-family: 'hammer'; 
    font-size: 1.5rem;
    color: #e87e4f;
    margin-bottom: 20px;
}

.text-section .description {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 100;
    text-align: justify;
}

.image-section {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-shadow {
    position: absolute;
    top: 70px;
    left: 25px;
    width: 800px;
    height: 500px;
    background-color: #3c7f72;
    border-radius: 20px;
    z-index: 0;
    left: 80px;
}

.image-box {
    position: relative;
    width: 800px;
    height: 500px;
    background-color: #96ae66;
    border-radius: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    left: 60px;
    top:10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.prev {
    left: 200px;
    top: 470px;
}

.next {
    left: 550px;
    top: 470px;
}

.slide {
    display: none;
}

.slide.active {
    display: block; 
}

video {
    margin-top:-70px;
    width: 750px;
    height: 550px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out; 
}

.videoTitle {
    font-family: 'hammer'; 
    text-align: center;
    font-size: 2rem;
    color: #f7e7c5;
    margin-top: -55px;
}

video.square,
video#squareVideo {
    width: 430px;
    margin-left: 150px;
}