@font-face {
  font-family: 'Titillium Web';
  src: url('/fonts/TitilliumWeb-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  src: url('/fonts/TitilliumWeb-Bold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


html {
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 2rem;
}
body {
  margin: 0;
  margin-top:3rem;
  padding: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color:#fff;
  background-repeat: no-repeat;
  background-size: cover;
}

main {
  background-color: #fddfe4;
  padding: 3rem;
  box-shadow: 10px 10px #136DEB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
}

main:hover {
  transform: translate(10px, 10px);
  box-shadow: 0px 0px #136DEB;
}

main div {
  width: 30vw;
}

main .profile img {
  width: 40%;
  border-style: solid;
  border-radius: 50%;
  border-width:0.5rem;
  border-color:#136DEB;
  transition: all .5s ease;
}

main .profile img:hover {
  cursor: pointer;
  border-color: #dcfa6e;
}

main .profile h1 {
  font-size: 2rem;
  font-weight: bolder;
  color: #136DEB;
}

main .profile h2 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
}

.profile, .link{
  margin-bottom: 2rem;
}

.link {
  background-color: #F8753A;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 10px 10px #dcfa6e;
  text-align: center;
  display: flex;
  align-items:center;
}

.link:hover {
  background-color: #F8753A;
  box-shadow: 10px 10px #136DEB;
}

.link img {
  height:100%;
  border-radius:8px;
}

.link p {
  display: inline;
  color: #000;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  margin: auto;
  max-width: 70%;
}

.link:active {
  transform: translate(10px, 10px);
  box-shadow: 0px 0px rgb(183, 124, 238);
}

.icon{
  width:10%;
  height:2rem;
}

.svg-icon{
  width:24px;
}

.dq-icon-fa-regular-400{
  color: #136DEB;
  font-weight:bold!important;
}

.titel{
  width:80%;
}

footer{
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.8em;
}

footer a{
  color: #136DEB;
}

@media (max-width: 900px) {

  body{
    margin-top:1.5rem;
  }

  main {
    width: 80%;
    padding: 1.5rem;
    box-shadow: none;
  }

  main:hover {
    transform: none;
    box-shadow: none;
  }

  main .profile h1 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  main .profile h2 {
    font-size: 1rem;
  }

  main .profile img {
    width: 60%;
  }

  main .profile img:hover {
    transform: none;
    box-shadow: 10px 6px #dcfa6e;
  }

  main div {
    width: 70vw;
  }
}

a div p {
  font-size: 1em;
}

@media (max-width: 400px) {
  main a div p span {
    display: none;
  }
}
