@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url(bg-blob-scene.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px ;
}

.container {
    background-color: rgb(255, 255, 255);
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 30px;
    text-align: center;
    box-shadow: 3px 9px 20px 2px rgba(0, 0, 0, 0.57);
    -webkit-box-shadow: 3px 9px 20px 2px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: 3px 9px 20px 2px rgba(0, 0, 0, 0.57);
    gap: 25px;
}

.container h1{
    font-size: 3rem;
    font-family: 'Architects Daughter', cursive;
}

.container span{
    font-size: 4rem;
}

.container .controls{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    background-color: transparent;
    border: 2px solid #f44336;
    color: #f44336;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 10px;
}

.button:hover {
    background-color: #f44336;
    color: white;
}

.button:nth-of-type(2){
    border-color: #008CBA ;
    color: #008CBA;
}
.button:nth-of-type(2):hover{
    background-color: #008CBA;
    color: white; 
}

.button:nth-of-type(3){
    border-color: #4CAF50 ;
    color: #4CAF50;
}
.button:nth-of-type(3):hover{
    background-color: #4CAF50;
    color: white; 
}

.save{
    width: 100%;
}

.save .button.grey{
    width: 100%;
    border-color: #adadad ;
    color: #adadad;
}
.save .button.grey:hover{
    background-color: #adadad;
    color: white; 
}
