
/** ADD YOUR AWESOME CODES HERE **/

.navbar-brand img {
    width: 60%; /* Reduces the logo size by 20% */
    max-width: none; /* Ensure the logo isn't constrained by parent width */
    height: auto; /* Maintain aspect ratio */
}

.line-above {
    width: 100%; /* Adjust width as needed */
    height: 15px; /* Adjust height as needed */
    background-color: rgba(255, 255, 255, 0.8); /* Orange color with transparency */
    margin: 0 auto 10px; /* Center the line and add spacing */
    border-radius: 2px; /* Optional: Rounded edges */
}

.about-section h2 {
    font-size: 42px; /* Title font size */
    color: #FFD700; /* Yellow color for the title */
    margin-bottom: 20px;
    font-weight: bold; /* Optional: Make the title bold */
    text-align: center; /* Center the title */
}

.about-section p {
    font-size: 22px; /* Paragraph font size */
    color: #FFFFFF; /* White color for the description text */
    line-height: 1.6;
    text-align: justify; /* Optional: Justify for better readability */
    margin-top: 15px; /* Add some spacing above the paragraph */
}

.about-section {
    padding: 0px 0; /* Reduced padding for smaller height */
    background: linear-gradient(135deg, #f7b733, #fc4a1a); /* Gradient colors */
    color: #ffffff; /* White text for contrast */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.games-strip h2 {
    font-size: 42px; /* Title font size */
    color: #FFFFFF; /* White color for the title */
    margin: 0; /* Remove additional margins */
    font-weight: bold; /* Optional: Make the title bold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Shadow effect */
}

.games-strip {
    background-color: #FFA500; /* Orange color for the strip */
    display: flex; /* Enable flexbox */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 15px 0; /* Padding for spacing */
    color: #FFFFFF; /* White text color */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    margin-bottom: 20px; /* Space below the strip */
}

#games {
    padding-top: 25px; /* Add space at the top of the Garden Manor section */
}

#games img {
    margin-top: 15px; /* Add space between the image and any elements above */
}


