body {
    background-color: #fff;
    font-family: helvetica;
    text-align: center;
    color: rgba(0, 150, 230, 0.7);
}

div.centered {
    top: 10vh;
    position: relative;
    width: 90vw;
    left: 5vw;
}

.crop {
    height: 15vh;
    width: 15vh;
    border: solid 2px;
    border-radius: 50%;
    overflow: hidden;
    color: rgba(15, 128, 255, 0.8);
    transition: all;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
	p {
		margin-block: 10px;
    }
    width: 160px;
    background-color: rgba(0, 0, 0, 0.66);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    border-color: black;
    border-width: 1px;
    padding: 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 110%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out 1s;
}

.tooltip:hover .tooltiptext {
	opacity: 1;
    transition: opacity 0.3s ease-in-out 0s;
}

.tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%;
    /* To the left of the tooltip */
    margin-top: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.66) transparent transparent;
}
a:link,
a:visited {
    text-decoration: none;
    color: rgba(15, 128, 255, 0.8);
    font-weight: bolder;
}

h1,
h2,
h3 {
    color: rgba(15, 128, 255, 0.8);
}

.disable {
    display: none !important;
}

#lang {
    position: fixed;
    display: block;
    width: auto;
    z-index: 9;
    cursor: pointer;
    top: 2vh;
    right: 2vh;
    max-width: 5vw;
    max-height: 10vh;
}

.techno {
    max-height: 5vh;
    margin: 10px;
}

.smallText {
    font-style: oblique;
    font-size: 0.5em;
    color: rgba(0, 0, 0, 0.3);
}
