@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

body,
html {
    height: 100%
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin: 0;
    background-color: #c7a462ff;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
    min-height: 100%;
    /* Ensure the body takes at least the full height of the viewport */
}

.grid {
    display: grid;
    grid-template-rows: auto 1fr auto;
    
}