/* default */

body {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

@font-face {
  font-family: wingdings; /* set name */
  src: url(assets/Wingdings\ 2.ttf); /* url of the font */
}

/* Code */
.space {
    display: flex;
 justify-content: space-evenly;
 font-size: 30px;
 align-items: center;
 background: #4fd8a2;
}

span.w {
    font-family: wingdings;
}

.left {
    width: 110px;
    height: 100%;
     justify-content: space-evenly;
    height: 100vh;
    padding: 0 5px 5px 0;
}

.right {
    width: 110px;
         justify-content: space-evenly;
 height: 100vh;
}

.topbottom {
    height: 110px;
    width: 100%;
}

.middle {
    width: 100%;
    height: 100vh;
}

/* Main */

.main {
    
    height: 100%;
    background: rgb(5, 14, 29);
    border: rgb(233, 131, 48) groove 5px;
}

.padding {
    height: 33%;
}

#instructions {
    display:none;
    color: white;
    font-size: 20px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 20px;
    height: 33%;
}

span#emph {
    font-weight: bold;
    text-shadow: rgb(233, 131, 48) 1px 1px 2px;
}

button {
    background-color: #ffffff00;
    border:#ffffff00;
}

/* Cats */

.cat {
    background: url(/assets/white.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    padding: 20px;
}

.falseA {
    background: url(/assets/orange.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    padding: 20px;
}


/* Tooltips */

.tooltiptext {
  visibility: hidden;
  width: 130px;
  height: 15px;
  background-color: rgba(255, 106, 0, 0.265);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  margin-bottom: 20px;
}

.cat:hover .tooltiptext {
  visibility: visible;
}