* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f1f1f1;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

.title h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.links {
    position: absolute;
    bottom: 10rem;
}

.links a {
    display: inline-block;
    margin: 0 0.5rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.links a:hover {
    filter: brightness(0.8);
    scale: 1.1;
}

.tooltips {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    position: absolute;
    bottom: 7rem;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0.2rem 0.5rem;
}

.tooltip .tooltiptext {
    visibility: hidden;
    /* width: 120px; */
    background-color: #000000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -58px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltiptext.active {
    visibility: visible;
    opacity: 1;
}

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

#emailtooltip {
    left: 50%;
    margin-left: -20px;
}