/* basic */

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: url(https://usagif.com/wp-content/uploads/gifs/water-20.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

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

.main {
    justify-content: center;
align-items: center;
width:50%;
margin: 5% 25%;
font-family: georgia;
}

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

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

/* crossword */

.letterbox {
    height: 70px;
    width: 70px;
    box-sizing: border-box;
    
}

.fr {
    padding: 5px;
    text-align: left;
    background: rgb(255, 255, 255);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.code {
    font-family: Wingdings;
        font-size: 70px;
        text-align: center;

}

/* crossword borders */

.one {
    border: rgb(233, 131, 48) groove 1px;
}

.two {
    border-left: rgb(233, 131, 48) groove 1px;
    border-top: rgb(233, 131, 48) groove 1px;
    border-bottom: rgb(233, 131, 48) groove 1px;
}

.three {
    border-left: rgb(233, 131, 48) groove 1px;
    border-right: rgb(233, 131, 48) groove 1px;
}

.four {
    border-left: rgb(233, 131, 48) groove 1px;
    border-top: rgb(233, 131, 48) groove 1px;
    border-right: rgb(233, 131, 48) groove 1px;
}

.five {
    border-left: rgb(233, 131, 48) groove 1px;
    border-bottom: rgb(233, 131, 48) groove 1px;
    border-right: rgb(233, 131, 48) groove 1px;
}

/* Shark */

.shark {
    background: url(https://img1.picmix.com/output/stamp/normal/1/7/9/9/509971_8cdbb.gif);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100px;
    width: 100px;
}

.shark:hover {
}

#instructions {
    display:none;
    background: white;
    padding: 10px;
    border: rgb(233, 131, 48) groove 5px;
    width: 50%;

}

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

/* Tooltips */

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

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