body {
    background: linear-gradient(90deg, #f06, #ff2);
}

h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
    color: #002fff;
}

.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 99vw;
    height: 30rem;
    border: 1px solid black;
}

.container>.block {
    border: 1px solid black;
}

.container>.colour1 {
    background-color: #ffffff;
}

.container>.colour2 {
    background-color: #ffffff;
}

.container>.colour3 {
    background-color: #ffffff;
}

.container>.colour4 {
    background-color: #ffffff;
}

.container>.colour5 {
    background-color: #ffffff;
}

p {
    color: #000000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 3rem;    
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 99vw;
    height: 50px;
}

.button1 {
    color: #000000;
    background-color: #aaaaaa;
    width: 200px;
    height: 30px;
    font-size: 20px;
    margin-top: 3rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button1:hover {
    background-color: #888888;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.button1:active {
    background-color: #555;
}

.button1:focus {
    outline: none;
}