body {
    margin: 0;
    padding: 0;
    background-size: cover;
    color: #382e1d;
    font-family: 'Georgia';
}

nav {
    top: 25px;
    position: relative;
    word-spacing: 5px;
    text-align: center;
    width: 90%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Semi-transparent white border */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 15px 20px; /* Add padding to create space around the links */
    margin: 0 auto;
}

nav ul {
    list-style-type: none; /* Remove default list styles */
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline; /* Display list items horizontally */
}

nav ul li a {
    font-family: 'Roboto';
    color: white; /* White text color */
    text-decoration: none; /* Remove underline from links */
    padding: 10px 20px; /* Add padding to create space around the text */
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background on hover */
}

h1{
    color: white;
    position: relative;
    top: 80px;
    padding-left: 60px;
    font-size: 57px;
    font-weight: 570;
    letter-spacing: 2px;
}
h3{
    font-size: 15px;
    position: relative;
    top: 45px;
    padding-left: 60px;
    font-family: 'DM Sans', sans-serif; /* DM Sans font */
    font-weight: 800;
    color: #cd853f;
    letter-spacing: 4px;
}
.dot{
    position: relative;
    color: white;
    font-size: 30px;
    top: -4px;
}
p{
    color:azure;
    position: relative;
    top: 35px;
    font-family: 'DM Sans'; /* DM Sans font */
    padding-left: 60px;
    font-size: 14px;
    font-weight: 10;
    word-spacing: 2px;
}
.button-position {
    position: relative;
    top: 440px;
    padding-left: 53px;
    
}

.square-button {
    background-color: transparent;
    color: white;
    border: 1px solid lightgray; /* White border */
    padding: 15px 35px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
    margin: 0 10px;
    border-radius: 4px;
   
}
.square-button:hover{
    background-color: lightgrey;
    color: rgb(101, 67, 33); 
}
h2{
    position: relative;
    top: 150px;
}
.logo{
    position: absolute;
    top: 50px;
    left: 90px;
    transform: translate(-50%, -50%);
    z-index: 100;
}
.logo img {
    width: 100px; /* Adjust the width of the logo as needed */
    height: auto;
}

/* Your existing CSS styles */

/* Popup login form styles */
/* Popup login form styles */
/* Popup login form styles */
/* Your existing CSS styles */

.button {
    position: relative;
    left: 630px;
    bottom: 10px;
    background-color: transparent;
    color: white;
    border: 1px solid lightgray; /* White border */
    padding: 10px 35px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
    margin: 0 10px;
    border-radius: 4px;
}

.button:hover {
    background-color: lightgrey;
    color: rgb(101, 67, 33); 
}

/* Popup login form styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with transparency */
}

.modal-content {
    background-color: #fefefe;
    margin: 20% auto; /* Center modal vertically and horizontally */
    padding: 20px;
    border-radius: 5px;
    width: 300px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h2 {
    margin-bottom: 20px;
}

form input[type="text"],
form input[type="password"],
form button[type="submit"] {                                                                                                                                                                                                                                                                                                                                                                                                                   
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

form button[type="submit"]:hover {
    background-color: #0056b3;
}
.container {
    text-align: center;
    margin-top: 100px;
    position: relative;
    padding-left: 1100px;
    bottom: 455px;
    word-spacing: 10px;
  }
  
  .form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f1f1f1;
    z-index: 9;
    background-color: #fefefe;
    padding: 20px;
  }
  
  .form-container {
    max-width: 300px;
    padding: 20px;
  }
  
  .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 5px;
  }
  
  .cancel {
    background-color: #ff3333;
  }
  
  .btn:hover, .cancel:hover {
    opacity: 0.8;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
  }
  


@media only screen and (max-width: 768px) {
    h1 {
        font-size: 7vw;
    }

    h3 {
        font-size: 3vw;
    }

    .dot {
        font-size: 4vw;
    }

    p {
        font-size: 2vw;
    }

    .button-position {
        top: 40vh;
    }

    .square-button {
        padding: 3vh 6vw;
        font-size: 2vw;
        margin: 0 2vw;
        border-radius: 1vw;
    }
}








