@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,200;0,300;0,500;1,100&display=swap');
body {
    font-family: 'Montserrat Alternates', sans-serif;
    background: #222222;
}
.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.7);
    border-radius: 15px;
    height: auto;
    width: 700px;
    padding: 15px;
    display: block;
    align-items: center;
    text-align: center;
}
.card h3 {
    color: rgba(0,0,0,.5);
}
.card p {
    color: rgba(0,0,0,.5);
}
.card a {
    color: rgba(107, 147, 255, 1);
    transition: color 350ms ease-in-out;
}
.card a:hover {
    color: rgba(29, 225, 255, 1);
}
.logo img {
    left:0;
    right:0;
    height: 20px;
    margin: auto;
    width: auto;
    cursor: pointer;
    transition: all 350ms ease-in-out;
    background-color: rgba(255,255,255,.3);
    padding: 15px;
    border-radius: 5px;;
}
.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0,0,0,.6);
    color: rgba(255,255,255,.7);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    font-size: 10px;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -16px;
    left: 38%;
  }
  
.logo:hover img {
    background-color: rgba(255,255,255,.7);
}
.logo:hover .tooltip {
    visibility: visible;
}
