
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background: gray;
  background-repeat: no-repeat;
}
h1{
  font-family: 'Playball', cursive;
  text-align: center;
  padding-top: 1rem;
  color:black;
  text-decoration: underline;
  font-size: 3rem;
}
main{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items:center ;
 min-height: 90vh;
}

.left_section{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  align-items: center;
  color:black;
  font-size: 1.5rem;
  
}
.right_section{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 1.5rem;
}

input{
  margin-bottom: 1rem;
  height: 2rem;
  width: 70%;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border:none;
  outline:none;
  color: black;
}
label{
  text-align: start;
}
#submit-btn{
  width: 40%;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border:chartreuse;
  cursor:pointer;
  background: linear-gradient(-47deg, #fd5552, #fd8630);
  transition: all .5s;
}
#submit-btn:hover{
  width: 70%;
  background: pink;
}

#output-box
{
 flex: 1;
  background: linear-gradient(-47deg, rgba(253, 134, 48,0.5), rgba(253, 85, 82,0.5));
  padding:3rem 1rem;
  width: 60%;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: none;
}
#output-graphic{
 flex: 1;
  width: 60%;
}

img{
  width: 100%;
  border-radius: 10px;
}


