/* fraunces-regular - latin */
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('./fonts/fraunces-v5-latin/fraunces-v5-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/fraunces-v5-latin/fraunces-v5-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* fraunces-700 - latin */
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('./fonts/fraunces-v5-latin/fraunces-v5-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/fraunces-v5-latin/fraunces-v5-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
/* yusei-magic-regular - latin */
@font-face {
    font-family: 'Yusei Magic';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('./fonts/yusei-magic-v3-latin/yusei-magic-v3-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/yusei-magic-v3-latin/yusei-magic-v3-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  

body {
    margin: 0px;
    background-color: #eae4dc;
    font-family: 'Yusei Magic', sans-serif;
}
.container {
    background: url(Orb_web.gif);
    background-size: contain;
    background-position: center right; 
    background-repeat: no-repeat;
    height: 400px;
    width: 1500px;
    margin-top: 30vh;
}
.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96%;
    padding-top: 41px;
}
.orbs {
    display: none;
    width: 100%;
}
.header {
    font-size: 65px;
    margin-top: 40px;
    color: #359298;
    mix-blend-mode: difference;
    font-family: 'Fraunces', serif;
}
.tooltip, .link {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.link a {
    text-decoration: none;
    color: black;
}

.link a:hover {
    color: #64867a;
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 120px;
    background-color: #64867a;
    color: white;
    text-align: center;
    padding: 5px 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: -40px;
    left: 0px;
    font-size: 12px;
}

.tooltip:hover {
    cursor: pointer;
    color: #64867a;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.icon:hover {
    fill: #64867a;
}
.icon {
    position: relative;
    top: 5px;
    width: 24px;
    height: 24px;
}
.icon:focus {
    outline: none;
}

@media screen and (max-width: 900px) {
    .container {
        background: none;
        width: 100%;
        height: unset;
        margin-top: 0px;
    }
    .orbs {
        display: flex;
        margin-top: 20vh;
    }
    .text-container {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0px;
    }
    .header {
        font-size: 40px;
    }
}