@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #041033;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.background {
  width: 430px;
  height: 520px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.background .shape {
  position: absolute;
  border-radius: 50%;
  height: 200px;
  width: 200px;
}
.shape:first-child {
  background: linear-gradient(#1845ad, #23a2f6);
  left: -30px;
  top: -50px;
}
.shape:last-child {
  background: linear-gradient(to right, #ff512f, #f09819);
  right: -30px;
  bottom: -80px;
  height: 250px;
  width: 250px;
}

body main.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  padding: 30px;
  background: linear-gradient(90deg, rgba(214,214,214,0.3) 0%, rgba(157,157,157,0.3) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(6.5px);
}

body main.card .profile-photo {
  border-radius: 100%;
  height: 150px;
  width: 150px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

body main.card .profile-photo img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  margin-left: -15px;
  margin-top: -10px;
}

body main.card h3.name {
  margin-top: 25px;
  font-size: 24px;
}

body main.card span.title {
  margin-top: 5px;
  font-size: 16px;
  text-transform: uppercase;
}

body main.card a.action-button:hover,
body main.card a.action-button:active {
  background-color: rgba(0, 0, 0, 1);
}

body main.card a.action-button {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  margin-top: 25px;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

body main.card a.action-button i {
  font-size: 24px;
}

body main.card a.email:hover,
body main.card a.email:active {
  background-color: rgba(0, 0, 0, 0.5);
}

body main.card a.email {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}