* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html{
  background:url('../assets/bg.png');
  background-attachment:fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  color: #343b45;
  text-decoration: none;
}
ul {
  list-style-type: none;
}

.wrapper {
  padding: 1.5rem 0;
  margin: auto;
  width: 85%;
}
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.picture {
  height: 9rem;
  width: 9rem;
  background-color: #52c8ff;
  border-radius: 100%;
  overflow: hidden;
}
.picture img {
  height: 9rem;
  width: 9rem;
}
.name {
  padding: 1rem 0;
  font-size: 2rem;
  letter-spacing: 1.5px;
  font-weight: bold;
  color: #00445a;
}

.social-media {
  width: 100%;
}

.social-media div {
  width: 100%;
  margin: 1rem 0;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid #343b45;
  background-color: Transparent;
  padding: 1rem 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.social-media div:hover {
  color: #ffffff;
  background-color: #343b45;
}

@media only screen and (min-width: 1000px) {
  .wrapper {
    width: 55%;
  }
}
