@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,800;1,400;1,500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins,sans-serif;

}
body{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    text-align: center;
    margin: 100px 0;
    padding: 50px 0;
    border: 2px solid black;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    background-color: aquamarine;
    align-items: center;
    height: 400px;
   
    
}
h1{
    font-weight: bold;
    color: black;
}
h2{
    font-weight: bold;
    color: black;

}
button{
    border: none;
    padding: 10px 0;
    color: white;
    font-weight: bold;
    width: 200px;
   

  
}
#button-btn{
    background-color: darkred;
    text-transform: uppercase;
    color: white;
    margin: 5px 0;
    border-radius: 10px;
}
#save-btn{
    background-color: darkgreen;
    text-transform: uppercase;
    border-radius: 10px;
}

#save-el{
    color: black;
    font-weight: bold;
    font-size: 20px;
    margin:  10px 0;
  
}