@import url('https://fonts.googleapis.com/css?family=Inter:400,700');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,700');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+SC:400,700');

body {
  background-image: linear-gradient(to bottom right, rgb(209, 246, 255), rgb(209, 239, 255));
  background-size: cover;
  font-family: 'Inter', 'Noto Sans TC', 'Noto Sans SC', sans-serif;
}

html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #ffffffc5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

h1 {
  color: rgb(15, 40, 77);
  width: 630px;
  font-weight: 700;
}

p {
  color: rgb(7, 46, 105);
  width: 630px;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 630px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 1.2em;
  margin: 10px;
  padding: 10px 20px;
  background-color: #ffffffc5;
  color: rgb(7, 46, 105);
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 1.5em;
  transition: background-color 0.3s;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover {
  background-color: rgba(192, 213, 230, 0.76);
}

@media (max-width: 980px) {
  body {
    font-size: 32px;
  }

  .container {
    padding: 20px;
  }

  .avatar {
    width: 350px;
    height: 350px;
    border: 4px solid #ffffffc5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1.3em;
  }
  
  .buttons-container {
    width: auto;
    flex-direction: column;
  }

  .button {
    width: 80%;
    height: 1.5em;
    margin: 20px auto;
    font-size: 1.5em;
    padding: 15px 30px;
    border-radius: 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}