@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
body {
    font-family: "Poppins", serif;
    height: 100%;
    background-color: rgb(180, 180, 180);
}


h1 {
    font-weight: 700;
    margin-top: 1vh;
    margin-bottom: 0;
    text-align: center;
    animation: fadeIn 2.5s;
}

h3 {
    font-weight: 400;
    animation: fadeIn 2.5s;
}

#header {
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 25vh;
    background-attachment: fixed;
    background-image: url("header.jpg");
    background-repeat: no-repeat;
    background-position: center 75%;
    background-size: cover;
    text-shadow: rgb(255, 255, 255) 1px 0 25px;
}


.fact {
    font-size: 1.5em;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .fact {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }
}
  

.fact1 {
    background-color: rgb(141, 168, 147);
}

.fact2 {
    background-color: rgb(194, 194, 194);
}

.tooltip3 {
    position: relative;
    display: inline-block;
    border-bottom: 3px dotted rgb(0, 0, 0);
  }

.tooltip3 .tooltip3text {
    visibility: hidden;
    width: 480px;
    background-color: #000000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -240px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip3 .tooltip3text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000000 transparent transparent transparent;
  }

  .tooltip3:hover .tooltip3text {
    visibility: visible;
    opacity: 1;
  }

a {
    text-decoration: none;
}
a:link, a:visited {
    color: #000000;
}
a:hover {
    color: rgb(0, 0, 0);
}
  .hacky {
    font-size: 1.5em;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
}

  @media (max-width: 600px) {
    .tooltip3 {
        border-bottom: none;
    }

    .fact, .hacky {
        padding-left: 10px;
        padding-right: 10px;
    }
}
