* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: white;
}

html, body {
    height: 100vh;
    margin: 0;
}

@keyframes pulse {
  0% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 130% 130%;
  }
  100% {
    background-size: 100% 100%;
  }
}

body {
  margin: 0;
  height: 100vh;

  background: linear-gradient(
    140deg,
    rgba(60, 71, 150, 1) 0%,
    rgba(18, 28, 74, 1) 30%,
    rgba(18, 28, 74, 1) 70%,
    rgba(60, 71, 150, 1) 100%
  );

  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 8s ease-in-out infinite;
}

header p {
    font-size: 19px;
}

.container {
    width: 400px;
    max-width: 800px;
    height: auto;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    background-image: url(/assets/background.webp);
    background-size: cover;
    background-color: aliceblue;
    box-shadow: #75757567 0px 0px 20px 8px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000000;
}

.list {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 45px 0;
}

.link-button {
    padding: 10px;
    background-color: rgba(16, 27, 73, 0);
    border: 2px solid white;
    border-radius: 10px;
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
    font-weight: bold;
    text-decoration: none;
}

.link-button:hover {
    scale: 1.02;
}

.media-button svg {
    color: white;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    filter: invert(1);
    transition: all 0.2s ease;
}

.media-button:hover svg {
    filter: invert(0.7);
    scale: 1.1;
    rotate: -5deg;
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        margin: 0px;
        border-radius: 0px;
        height: 100vh;
    }

    footer {
        position: fixed;
        bottom: 25px;
        width: 100%;
        left: 0;
    }
}