@media screen and (orientation: landscape) {
  html, body {
    overflow: auto; /* Enable overflow scrolling */
  }
}

/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* CUSTOM FONTS */
.inter-tight {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


/* general classes */
.white-text {
    color: white;
}

.wrapper {
  height: 100vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}


/* GLOBAL STYLES */
html, body {
    /* Removed overflow: hidden to enable scrolling */
    height: 100%; /* Set height to 100% of the viewport height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    justify-content: center; /* Center horizontally */

}

body {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 125%;
    background-image: url('../images/bg.gif'); /* Relative path */
    background-size: cover;
    background-position: center;
    margin: 0;
    background-color: #fff; /* Fallback background color */
}

/* Add a class for the content wrapper */
.content-wrapper {
    background-color: white; /* Set background color to white */
    padding: 20px; /* Add padding for spacing */
    margin: 20px auto; /* Center the block horizontally and add margin */
    max-width: 800px; /* Set maximum width */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
}

/* Apply styles to the paragraph */
p {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 28px; /* Set font size */
    color: #000; /* Set text color */
    line-height: 1.2; /* Set line height for better readability */
    text-indent: 10%;
}

.highlight {
    color: #C87270; /* Or any other color you desire */
}

/* Adjust container width */
.container {
    max-width: 90%; /* Adjusted maximum width of the container */
    margin: 20px auto; /* Add margin for spacing */
}


/* HEADER */

.logo {
    text-align: center;
    margin-bottom: 5px; /* Add margin at the bottom of the logo */

}

.logo img {
    max-width: 15%; /* Adjusted maximum width of the logo */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block; /* Ensure the image behaves as a block element */
    margin: 0 auto; /* Center the image horizontally */
    padding-top: 3%;
}

/* MENU */
nav {
    text-align: center;
}

.menu {
    list-style-type: none;
    margin-bottom: 20px; /* Add margin at the bottom of the logo */

}

.menu li {
    display: inline-block;
    margin-right: 20px; /* Adjust spacing between menu items */
}

.menu li:last-child {
    margin-right: 0; /* Remove margin from last item */
}

.menu li a {
    text-decoration: none;
    color: #fff;
}

.menu li a:hover {
    color: #ccc;
}

/* About page specific styles */
.about-text {
    text-align: justify; /* Justify the text */
    color: #C87270; /* Set text color */
}
