
@font-face {
  font-family: 'Roboto';
  src: url(./font/Roboto-Thin.ttf);
  font-weight: 300;
}




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

h2{
  color:black;
}
h3,h4 {
  color:white;
  margin:0;
  margin-bottom: 10px;
}
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;
  z-index: 100;
}



.profile-picture {
  width: 150px;
  height: 150px;
}
.profile-picture img {
  border-radius: 160px;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 5px 5px 36px 5px #000000;
  box-shadow: 5px 5px 36px 5px #000000;
}
.profile-name {
  margin-bottom: 30px;
}

.link-item {
  min-height: 56px;
  width: 100%;
  border: 1px solid white;
  margin-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.link-item:hover {
  cursor: pointer;
  background-color: white;
}
.link-item:hover p {
  color:black;
}


.background-overlay {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
}

.background-overlay img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  filter: blur(5px);

}
