@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif

}
body{
    background-color: #1A2333 ;
    color: white;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: #121826 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.logo{
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;

}

.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 2s;
}
.navbar a:hover,
.navbar a.active {
    color:  #763626;
}

.team{
    padding: 100px 100px 40px;
    text-align: center;
    
}
h2{
    font-size: 35px;
    padding-top: 35px;
    color: #ededed;

}
h3{
    color: white
}
.team-grid {
    display:flex;
    grid-template-columns: 1fr; 
    justify-content: center; 
    margin-top: 60px;
    gap: 10px;
    

}


.button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#25507B ; /* Ersetze #007bff mit deiner gewünschten Farbe */
    border-radius: 10rem;
    z-index: -2;
}

.button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #0056b3; /* Ersetze #0056b3 mit einer abgedunkelten Farbe */
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}

  
.container {
  padding-top: 50px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    gap: 10px;
}
main {
    min-height: 100vh; /* Verhindert unnötiges Scrollen */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Verteilt Inhalte gleichmäßig */
}

