* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.image {
    width: 50%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease-in-out;
}

.image-left {
    left: 0;
}

.image-right {
    right: 0;
}

/* Slide out effect */
.slide-left {
    transform: translateX(-100%);
}

.slide-right {
    transform: translateX(100%);
}

/* Center logo, text, and buttons */
.content {
    position: relative;
    z-index: 3;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    margin-left: 25px;
    margin-right: 25px;
    border-radius: 5%;
    font-family: 'Futura PT';
    
    
}

.logo {
    max-width: 100%;
}

.text-content {
    margin-top: 20px;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgb(195, 147, 49);
}

.text-content p {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(45, 91, 63);
}

.text-content-2 {
    margin-top: 20px;
}

.text-content-2 p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(45, 91, 63);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    font-family: 'Futura PT';
    padding: 10px 20px;
    font-size: 1.4rem;
    color: white;
    background-color: rgb(45, 91, 63);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color:rgb(195, 147, 49);
}

/* Large screen logo size */
@media (min-width: 769px) {
    .logo {
        max-width: 400px;
        max-height: 400px;
    }
}

/* Small screen logo size */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
        max-height: 250px;
    }
    .btn-group{
        display: block;
    }
    .btn{
        font-size: 1.2rem;
        width: 100%;
        margin-bottom: 10px;
    }
    .text-content h1 {
        font-size: 2rem;
    }
    .text-content p {
        font-size: 1.3rem;
    }
    .text-content-2 p {
        font-size: 0.9rem;
    }
}


@font-face {
    font-family: 'Futura PT';
    src: url('FuturaCyrillicBook.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}