body {
    margin:0;
    font-size:1.5rem;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.container {
    display: grid;
    height: 100vh;
    width: 100vw;
    background-color: #FFFFFF;
    grid-template-rows: 1fr 20fr;
    grid-template-columns: 1fr;
    grid-template-areas: 
    'navbar'
    'content';
}

.navbar {
    grid-area: navbar;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content {
    grid-area: content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soon {
    color: black;
    font-weight: 600;
    margin-left: 10px;
}

.icons {
    right: 0;
    position: absolute;
    margin-right: 10px;
}

.linked-in {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.linked-in:hover {
    fill: #0077B5;
}

.text {
    display: block;
}

.flip-card {
    background-color: transparent;
    width: 40%;
    height: 40%;
    perspective: 1000px;
    cursor: pointer;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: black;
    border: 1px dashed #000000;
    border-radius: 10px;
    flex-direction: column;
  }
  
  .flip-card-back {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #000000;
    transform: rotateY(180deg);
    border: 1px dashed #000000;
    border-radius: 10px;
  }

  @media only screen and (max-width: 600px) {
    .flip-card {
        width: 90%;
        height: 50%;
    }
}