* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #936ecf, #371744);
    color: white;

    display: flex;
    justify-content: center;

    min-height: 100vh;
    align-items: center;
}

.page {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile h1 {
    margin-bottom: 10px;
}

.profile p {
    opacity: 0.7;
    font-size: 14px;
}

.avatar {
    width: 120px;
    height: 120px;
    
    border-radius: 50%;
    object-fit: cover;
    
    border: 4px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    margin-bottom: 20px;
    transition: 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

/* ---------- Links ---------- */ 

.link {
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  transition: 0.2s ease;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

/* ---------- Projekt ---------- */ 

.projekt {
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.2s ease;
}

.projekts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaks {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    border: 4px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    margin-top: 20px;
    transition: 0.3s ease;
}

.projekt-link{
    color: white;
}

/* ---------- Footer ---------- */ 

.footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.footer a {
    text-decoration: none;
    color: white;
    transition: 0.2s ease;
}

.footer a:hover {
    opacity: 1;
}

.back-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 10px  20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: scale(1.05  );
}

.card p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 10px;
}

.card ul {
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.card h1 {
    margin-bottom: 20px;
}

.card h2 {
    margin-bottom: 30x;
    margin-top: 15px;
}

.legal-buttons {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-top: 30px;
}

@media (max-width: 480px) {
    .page { 
        padding: 28px 16px;
}

.profile h1 {
    font-size: 40px;
}

.profile {
    font-size: 25px;
}

.link {
    padding: 20px;
    font-size: 25px;
}
}