body {
    margin: 0;
    padding: 0;     
}

.container {
    display: none;   
    position: fixed;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font: 90px georgia;
    color: darkblue;
    font-weight: bold;
    background-color: rgba(103, 203, 198, 0.1);
}

.background {
    
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/kitchen.png");
    background-repeat: no-repeat;
    background-size: cover; 
}

input {
    
    justify-content: center;
    padding: 16px 32px;
    background-color: darkblue;
    color: white;
    margin: 4px 2px;
    font: 70px georgia;
    display: fixed;
}

form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}