*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.index {
    min-height: 100vh;
    background: linear-gradient(45deg,#ff6b6b, #4ecdc4);
    background-image: url('majestic-snowcapped-mountain-range-reflected-calm-lake.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem; 
    position: fixed;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}  


ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

a {
    text-decoration: none;
    color: #ffda79;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
}

a:hover::after {
    width: 100%;
    left: 0;
}

a:hover {
    color: #fff;
}

h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    margin-top: 5rem;
}

.uebermichbody {
    min-height: 100vh;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-image: url('ueber-mich.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: flex-start;
}

.profile-container {
    display: flex;
    align-items: center; 
    margin-top: 12rem; 
    background: rgba(0, 0, 0, 0.4); 
    padding: 2rem;
    border-radius: 20px;
}

.profile-image { 
  width: 200px; 
  height: 200px; 
  border-radius: 0%; 
  margin-right: 2rem; 
  border: 5px solid #fff; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  object-fit: cover;   
  animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transform: scale(0); 
}

.profile-text {
    color: #ffffff; 
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    background-color: #3b383800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #1eff00;
}

.kontaktbody {
    min-height: 100vh;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-image: url('kontakt.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: flex-start;
}

.game-link {
    display: block;
    margin: 0.5rem 0;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    border: 2px solid #0dcf20;

}

.htp image {
    width: 200px; 
    height: 200px; 
    border-radius: 0%; 
    margin-right: 2rem; 
    border: 5px solid #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    object-fit: cover;   
    animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0); 
}

@keyframes popUp {
  0% {
    transform: scale(0);      
    opacity: 0;               
  }
  100% {
    transform: scale(1);      
    opacity: 1;               
  }
}

