*{
    letter-spacing: 2px;
}

body{
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    min-height: 100vh;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.container{
  display: flex;
  flex-direction: column;
  border: solid rgb(156, 92, 92);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 5px 5px;
  margin-bottom: 20px;
  width: 90%;
  max-width: 400px;
}

.container{
  background: white;
  border-radius: 10px;
}
.container input{
    height: 50px;
    text-align: center;
    border: solid blue 2px;
    border-radius: 5px;
}

.container button{
    color: white;
    background-color: rgb(91, 91, 111);
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    margin: 1rem;
    transition: 0.3s;
}

.container button:hover{
    background: #2f62a8;
    cursor: pointer;
}

.details img{
    height: 100px;
    width: 100px;
}

.details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid rgb(43, 105, 81);
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

.details{
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 2px 2px 5px;
}



.symb{
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 20px;
    padding: 1.5rem;
    margin: 5px;
    border: solid rgb(67, 59, 59);
    border-radius: 5px;
    text-align: center;
}

.symb i{
    font-size: 22px;
    margin-bottom: 5px;
}

.cel{
    font-size: 48px;
    font-weight: 800;
    line-height: 10px;
    color: #333;
}

@media (max-width:600px){

.details{
    margin-right: 10px;
}

.symb{
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cel{
    font-size: 32px;
}

.details img{
    height: 80px;
    width: 80px;
}
}