body {
    display: flex;
    background-image: url("images/flower.jpg");
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 300px;
}

.container {
    background-color: whitesmoke;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 10px;
    max-width: 600px;
    width: 500px;
    text-align: center;
}

h1 {
    color: black;
}
.info {
    margin: 25px;
    position: relative;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: grey;
}

.info:hover {
    box-shadow: 5px;
}