* {
  padding: 0;
  margin: 0;
}

html {
  box-sizing: border-box;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background: #5f2c82;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #49a09d, #5f2c82);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #49a09d, #5f2c82); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */  
  height: 100vh;
}

h3 {
  font-size: 3rem;
  text-align: center;

  color: aliceblue;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.dictionary__box {
  background-color:#FFFDFA;
  width: 35rem;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 1.5rem;
}
.all__items{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 1rem 0;
}
.all-items__holder{
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
}
.input{
    width: 60%;
    border: none;
    outline: none;
    border-bottom: 2px solid #7739a1;
    padding: 1rem;
    background-color: transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}
.input::placeholder{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}
.btn{
    width: 25%;
    padding: 1rem 1.5rem;
    background-color: #5f2c82;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
}
.word__details{
   margin-top: 3rem;
   margin-bottom: 1.5rem;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-direction: column;
   display: none;
}
.icon{
    fill: #7739a1;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
}
.word__items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
}
.word{ 
     font-size: 2rem;
     font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
     font-weight: 900;
     color: #5f2c82;
     margin-bottom: 1rem;
}
.word__phonetic{
      font-size: 1.1rem;
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      color: #7739a1;
}
.word__origin{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.open{
    display: block;
}

/* Responsive */
@media (max-width:576px) {
  .dictionary__box {
    width: 80%;
  }
}