@import url('icons.css');

body,
html {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans Condensed', sans-serif;
}

body {
  background-image: url("dgss.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
}

body>.background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: -1;
  transition: all 800ms cubic-bezier(0.25, 1, 0, 1);
  box-shadow: inset 0 0 50vw 5vh black;
}

.top,
.bottom {
  height: 5vh;
  width: 100%;
  display: block;
  font-size: 2.5vh;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  /* background-color: rgba(10, 80, 240, 0.5); */
  transition: all 800ms cubic-bezier(0.25, 1, 0, 1);
}

.top>a {
  margin: 1vw;
  text-decoration: none !important;
  color: white;
}
/* 
.top>a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 2vw;
} */

.bottom {
  font-size: 2vh;
  color: rgba(255, 255, 255, 0.3);
}

.center {
  flex: 1;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.links-container {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 4vw;
}

.title {
  color: white;
  font-size: 4vh;
  width: 100%;
  font-family: 'PT Sans Narrow', sans-serif;
}

.name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: white;
  font-size: 5vh;
  width: 100%;
  line-height: 7vh;
  margin-bottom: 3vh;
  margin-top: 3vh;
}

.details {
  color: rgba(255, 255, 255, 0.65);
  font-size: 3vh;
  width: 80%;
  line-height: 3vh;
}

.link {
  font-family: 'PT Sans Narrow', sans-serif;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5vh;
  width: 50%;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.link:before {
  font-size: 2vh;
  margin: 0 1vh 1vh 0;
  width: 4vh;
  min-width: 4vh;
  height: 4vh;
  min-height: 4vh;
  border: 0.7vh solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

/* .link.icon-call:before {
  border-color: rgba(235, 0, 110, 0.35);
}

.link.icon-skype:before {
  border-color: rgba(0, 160, 230, 0.35);
}

.link.icon-whatsapp:before {
  border-color: rgba(0, 255, 50, 0.35);
}

.link.icon-email:before {
  border-color: rgba(255, 160, 0, 0.35);
} */