* {
  padding: 0;
  margin: 0;
}

h1 {
  margin-top: 1em;
  text-align: center;
  text-transform: capitalize;
  color: blue;
}

@media (max-width:1150px) {
  body{
    max-width: 1000px;
  }
  h1
  {
    margin-top: 10px;
    text-align: center;
    transform: capitalize;
    color: red;
    font-size: 20px;
    max-width: 100%;
  }
  #text-box {
    max-width: 80%;
    max-height: 100px;
  }
  #text-box p {
    font-size: 20px;
  }
  img.fortuneteller  {
margin: 0;
max-width: 30%;
}
}

body {
  font-family: 'Merriweather Sans', sans-serif;
  background: #cee7ed;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

#text-box {
  display: block;
  height: inherit;
  width: auto;
  background-color: blue;
  position: relative;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  color: white;
  font-size: 55px;
  border-radius: 20px;
  top: 10px;
}

.text-box p
{
  display: flex;
  align-content: center;
  align-self: center;
  justify-content: center;
}
.links {
  display: flex;
  height: auto;
  max-width: 300px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.links a {
  margin: 10px;
  color: white;
  font-size: 30px;
  text-align: center;
  padding: 10px;
  align-self: center;
  text-decoration: none;
  background-color: orange;
  display: none;
  border-radius: 20px;
}
.links a:hover {
  color: black;
  border: solid white 3px;

}


.container {
  display: flex;
  margin-top: 100px;
  max-width: 95%;
  max-height: 250px;
  justify-content: space-around;
}
.fortuneteller {
  margin-left: 50px;
  max-width: 250px;
  max-height: 200px;
}



.talkie-box  {
  display: flex;
  background-color: white;
  border: 2px solid black;
  border-radius: 20px;
  height: auto;
}

.talkie-box p {
  font-size: 20px;
  margin: 10px;
  padding: 10px;
  text-align: left;
}

#user-input {
  max-width: 100px;
  font-size: 30px;
  margin-top: 20px;
  display: none;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 20px;
  border: solid black 2px;
  align-items: center;
}

#btn1 {
  margin-top: 10px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  background: orange;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 30px;
}

#btn1:hover {
  border: solid white 2px;
}

#btn2 {
  border-radius: 20px;
  display: none;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  background: orange;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 30px
}

#btn2:hover {
  border: solid white 2px;
}
