/* Main Style */
html, body {
  margin: 0px;
  font-size: 20px;
  background-color: #ffb9c6;
  background: linear-gradient(0deg,#ffb9c6,#694ff6);
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-size: 14px;
  position: relative;
  display: block;
  height: 115vh;
}

h2{
  color:black;
}
p {
  color:white;
  font-size: 17px;
  text-align: center;
}

a {
  text-decoration: none;
}




/* Service Style */

.service-container {
  display: flex;
  justify-content: center;
  padding: 2%;
}
.service-items {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}



.profile-picture {
  width: 150px;
  height: 150px;
}
.profile-picture img {
  border-radius: 160px;
  height: 100%;
}
.profile-name {
  margin-bottom: 30px;
}

.link-item {
  min-height: 56px;
  width: 100%;
  border: 1px solid white;
  margin-bottom: 25px;
}
.link-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-item img {
  height: 30px;
  margin-left: 10px;
}
.link-item:hover {
  cursor: pointer;
  background-color: white;
}
.link-item:hover p {
  color:black;
}
