body {
background-color: #f1f1f1;
color: #2C373A;
max-width: 100%;
margin: 0;
font-family: "Familjen Grotesk", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 16px;
line-height: 1.6em;
}

p {
    font-family: "Familjen Grotesk", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 16px;
}

h1 {
font-weight: 500;
font-size: 32px;  
}

h2 {
font-weight: 500;
font-size: 24px;  
text-align: center;
}

.blinking {
  -webkit-animation: 1s blink ease infinite;
  -moz-animation: 1s blink ease infinite;
  -ms-animation: 1s blink ease infinite;
  -o-animation: 1s blink ease infinite;
  animation: 1s blink ease infinite;
  
}

@keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-ms-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes "blink" {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}


.background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #f1f1f1, #f1f1f1);
    display: flex;
    flex-grow: 1;
    z-index: -2;
}

.background div {
    position: absolute;
    border-radius: 100%;
    height: 0;
    filter: blur(240vw);
    opacity: .4;
}

.background div:nth-child(1) {
  background: linear-gradient(132deg, #38f2ff 0%, #0fabff 100%);
  width: 30%;
  padding-top: 30%;
  left: 15%;
  top: 0%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(2) {
  background: linear-gradient(132deg, #0800FF 0%, #E32BE3 100%);
  width: 25%;
  padding-top: 25%;
  left: 25%;
  top: 20%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(3) {
  background: linear-gradient(132deg, #0fabff 0%, #38f2ff 100%);
  width: 30%;
  padding-top: 30%;
  right: 1%;
  top: 0%;
  transform: translate(-50%) translateY(-50%);
}
.background div:nth-child(4) {
  background: linear-gradient(132deg, #E32BE3 0%, #0800FF 100%);
  width: 25%;
  padding-top: 25%;
  right: 1%;
  top: 20%;
  transform: translate(-50%) translateY(-50%);
}


.content-wrapper {
    max-width: 720px;
    margin: 80px auto;
}

.placeholder {
    text-align: center;
    max-width: 720px;
    margin: 80px auto;
}

.home .placeholder {
    max-width: 480px;
    text-align: justify;
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.home .placeholder .logo {
    text-align: center;
    margin-bottom: 40px;
}

section {
    margin-bottom: 60px;
}

.logo span {
    display: block;
    font-weight: 600;
}

.team-container {
    display: flex;
    justify-content: space-between;
}

.member .image img {
    border-radius: 50%;
    width: 96px;
    height: auto;
    margin-bottom: 12px;
}

.team-container .member,
.products-container .product {
    text-align: center;
}

.team-container .member .name,
.products-container .product .name{
    font-weight: 600;
    line-height: 0.8em;
}

.team-container .member .title,
.products-container .product .type {
    font-size: 14px;
}

.team-container .member .image img {
    border: 3px solid #f0f0f0;
}

.product .image img {
    border-radius: 12px;
    width: 64px;
    height: auto;
    margin-bottom: 12px;
}


.contact p {
    text-align: center;
}

.copyright {
    text-align: center;
}

@media screen and (max-width: 800px){
 .content-wrapper, .placeholder {
     padding: 0px 20px;
     margin: 40px 20px;
 }   
 
 .team-container {
     flex-direction: column;
 }
 
 .team-container .member {
     margin-bottom: 20px;
 }
}