@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
h2 {
  font-weight: 500;
}
a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-weight: 300;
}
a:visited {
  color: black;
}
html,
body {
  height: 100%;
  overflow: hidden;
}
section {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
}
.padding-container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 87%;
  width: 80%;
  background-color: #000000a6;
  border-radius: 10px;
}

.svg-contianer-camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Profile-description {
  position: relative;
  top: -40px;
  color: #ffffff;
  text-align: center;
}
.img-container {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: relative;
  top: -40px;
  border: 8px solid #000;
}
.img-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 26%;
}
.my-links {
  width: 80%;
}
.svg-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.link-container {
  background-color: #ffffff;
  width: 100%;
  border-radius: 100px;
  height: 50px;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
}
.link-container:hover {
  transform: translateY(-5px) scale(0.95);
}
.link-container a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  text-align: center;
  align-items: center;
}
.link-container-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  width: 100%;
  border-radius: 100px;
  height: 50px;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
}
.link-container-phone:hover {
  transform: translateY(-5px) scale(0.95);
}
.link-container-phone span {
  color: #000;
}
