*{
    text-align: center;
    color: #000000;
    font-family: cursive;
}

.reveal img {
  border-radius: 50%;
  object-fit: cover;
  height: 200px;
}

@media (min-width: 600px) {
  .reveal:nth-of-type(2) {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
  }
}

body{
    background-color: rgb(243, 226, 184);
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: medium;
    }

nav{
    display: flex;
    font-size: 18px;
    }

ul{
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: arial;
    color: rgb(245, 4, 225);
  }

h1{
    color: black;
    font-family: arial;
    font-size: large;
    text-align: center;
  }

footer{
    text-align: center;
    padding: 20%;
    margin-top: 20px;
}

form{
        color: rgb(94, 77, 36);
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
        flex-direction: column;
        margin: auto;
        width: 50%;
        height: 100%;
        display: flex;
    }

input{
        width: 40%;
        margin: auto;
        height: 50%;
        margin-bottom: 5%;
    }
    
button{
        width: 20%;
        height: 40%;
        margin-top: 5%;
        height: 50%;
        margin-bottom: 5%;
    }
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  color: rgb(255, 173, 255);
  font-weight: bold;
}