@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    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/comunicare.jpg');
    background-size: cover;
}
.overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content-container {
    z-index: 1; /* Ensure the content is above the overlay */
}


.wrapper{
    margin: 150px auto;
    width: 59%;
    padding-bottom: 20px;
}

img{
    max-width: 320px;
    float: left;
    border: 3px solid white;
    border-radius: 10px;
    margin-right: 15px;
}

.custom-button {
    padding: 15px 30px;
    background-color: darkgreen;
    color: #fff; /* Text color */
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: 1050px;
    height: 40px;
    line-height: 0.6;
  }

  .custom-button:hover {
    background-color: green;
  }


.text-box {
    color: white;
}

.text-box h2
{
    font-size: 42px;
}

.text-box p
{
    font-size: 26px;
}


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%;
}
