@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
:root
{
    --gradient: linear-gradient(to top left, #cc0000 0%, #0066ff 100%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    background: url('../images/cover2.jpg');
    background-size: cover;
}
.overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.content-container {
    z-index: 1; /* Ensure the content is above the overlay */
}


.wrapper{
    margin: 150px auto;
    width: 80%;

}

img{
    max-width: 380px;
    float: left;
    border: 3px solid white;
    border-radius: 10px;
    margin-right: 15px;
}

.custom-button {
    padding: 15px 30px;
    background-color: darkgreen;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: 1500px;
    height: 40px;
    line-height: 0.6;
    margin-bottom: 20px; /* Add margin to the bottom */
     /* Add margin to the left*/
  }
  
  .custom-button:hover {
    background-color: green;
  }
  
  .text-box {
    color: white;
  }
  
  .text-box h2 {
    font-size: 35px;
  }
  
  .text-box p {
    font-size: 14px;
  }

nav {
    position: absolute; /* Position the logo relative to the body */
    top: 20px; /* Adjust the top position as needed */
    left: 20px; /* Adjust the left position as needed */
    z-index: 2; /* Ensure the logo is above the overlay */
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
}

footer {
    background-color: darkgreen;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
