@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: "Be Vietnam Pro", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(32, 132, 130);
  background: linear-gradient(0deg, rgba(32, 132, 130, 1) 0%, rgba(37, 153, 152, 1) 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}


.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 5rem;
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
  text-align: center;
  color: #000000;

}

.profile:after {
  content: "";
  display: block;
  top: -1rem;
  left: -1rem;
  bottom: -1rem;
  right: -1rem;
  z-index: -1;
  position: absolute;
  border-radius: 5.5rem;
  background: rgb(255, 255, 255, .2);
  box-shadow: 0 0 4rem -1rem #000;
}

.profile-image {
  border-radius: 50%;
  overflow: hidden;
  width: 12rem;
  height: 12rem;
  position: relative;
}

.profile-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.profile-username {
  font-size: 3rem;
  font-weight: bold;
}

.profile-user-handle {
  font-size: 1.2rem;
  color: rgb(32, 132, 130);
}

.profile-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
}

.profile-actions>* {
  margin: 0 0.25rem;
}

.btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s ease;
}

.btn--primary {
  border-radius: 99em;
  background-color: rgb(32, 132, 130);
  color: #fff;
  padding: 2rem 3rem;
}

.btn--primary:hover,
.btn--primary:focus {

  background-color: #292929;
}

.btn--icon {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  color: #292929;
  background-color: #e6e8e7;
}

.btn--icon i {
  font-size: 1.25em;
}

.btn--icon:hover,
.btn--icon:focus {
  border-color: #7d8396;
}

.profile-links {
  margin-top: 2.5rem;
}

.link {
  text-decoration: none;
  color: #292929;
  margin: 0 1.5rem;
}

.link:hover {
  color: rgb(32, 132, 130);
}

.link i {
  font-size: 3rem;
}





/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }

  .profile {
    width: 94%;
  }

  .profile-actions,
  .profile-links {
    margin-top: 2rem;
  }

  .btn--primary {
    padding: 0 1rem;
  }
}

