body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: antiquewhite;
}

header {
    background-color: rgba(51, 51, 51, 0.1);
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
    width: auto;
}

header nav {
    display: inline-block;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 22px; 
    padding-right: 100px;
}

.main-content {
    background-image: url('img/red-fox-7729406_1920.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.main-content h1 {
    font-size: 400px;
    letter-spacing: 70px;
    color: rgba(255, 255, 255, 0.753);
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
    text-decoration: none;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.image-container,
.text-container {
    width: 50%; /* Adjust the width as needed */
    padding: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-container {
    text-align: left;
}

.text-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 16px;
}