* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Roboto",sans-serif;
  color: #1d1d1d;
}
html, body {margin: 0;}
html, body {height: 100%;}
h1, h2 {
  padding: 0;
  margin: 0;
}
#container {
  background-image: url("background.webp");/*Background Image*/
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 15px;
}
#card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.25);
  width: 80%;
  padding: 50px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px 0 rgba(29,29,29,0.25);
  transition: all 200ms ease-in-out;
}
#card-container:hover {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.5);
}
#card-container:hover main {border-color: #006bff;}
#card-container:hover #profile-picture {border-color: rgba(0, 107, 255, 0.5);}
#profile-picture {
  width: 150px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.25);
  transition: all 200ms ease-in-out;
}
#profile-picture:hover {
  border-color: rgb(0, 107, 255) !important;
  transform: scale(1.15);
  box-shadow: 0 8px 32px 0 rgba(29,29,29,0.25);
}
header, main {text-align: center;}
header {
  margin: 15px 0;
  font-weight: bold;
}
header h2 {transition: all 200ms ease-in-out;}
main {
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  padding: 15px 0;
}
footer {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
footer span {margin-bottom: 5px;}
footer div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer a {
  color: #ffffff;
  background-color: #006bff;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 2px;
  font-weight: bold;
  text-decoration: none;
  opacity: 75%;
  transition: all 200ms ease-in-out;
}
footer a:hover {opacity: 100%;}
@media (min-width: 768px) {
  #card-container {
    width: 60%;
    padding: 50px;
  }
}
@media (min-width: 1024px) {#card-container {width: 50%;}}
