/*---------
Fonts and sizes
---------*/
.font {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-size: 120pt;
}

h2 {
    font-size: 35pt;
}

.text {
    font-size: 22pt;
}

button {
    font-size: 22pt;
    border-radius: 25px;
}

/*---------
Grid frame for the text
---------*/
.grid-container {
    display: grid;
    grid-template-columns: 100px 1000px 100px;
    justify-content: center;
    padding: 10px;
}

.grid-item {
    grid-column: 2 / 3;
    height: auto;
    text-align: center;
}


/*---------
Bottom padding and Button
---------*/
button {
    background-color: #ffe330;
    width: 412;
    height: 73;
    border: white;
    padding: 20px;
    margin: 50px;
}
