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

nav {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
 font-size: 2rem;
}

nav a {
color: #6b4a37;
text-decoration: none;
text-align: center;
}

nav a:hover {
position: relative;
color: #C3A37D;
}

h1{
    font-size: 5rem;
    padding: 5%;
    color:#6b4a37
}

/* kitty */

.myText:hover + .hide {
    opacity: 1;
}

.hide {
    opacity: 0;
    color: #6b4a37;
    transition: opacity 0.5s ease;
    text-align: center
}

.myText {
    text-align: center;
    font-size: 1.5rem;
    color: #6b4a37;
}

footer{
  text-align: center;
  background-color: #6b4a37;
  position: fixed;
  left: 0%;
  bottom: 0%;
  width: 100%;
  color: #C3A37D;
}

body {background-color: lightyellow;}

