* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --bg-image: url(./img/osasco.png) 
}

body {
    height: 100vh;
    display: grid;
    place-content: center;
    gap: 100px;
}
.imagem{
    height: 500px;
    width: 900px;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
}
.container {
    display: grid;
    gap: 12px;
}
.container input {
    font-size: 2rem;
    text-align: center;
}
.buttons button {
    padding: 12px;
    flex-grow: 1;
    width: 40vh;
}