/* * { 
    outline: 1px red dotted
} */

h1 { 
    text-align: center;
    text-shadow: 0 9px rgba(128, 128, 128, 0.164);
}

body { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(236, 45, 11, 0.432);

}

button { 
    border-radius: 15px;
    font-size: 30px;
    color: rgb(red, green, blue);
    margin: 20px 60px 20px 60px; 
    box-shadow: 0 9px rgba(0, 0, 0, 0.575) ;
}

button:hover {
    background-color: rgb(190, 187, 187);
    cursor:pointer;
    
}

button:active { 
    transform: translateY(4px);
    box-shadow: 0 5px rgba(0, 0, 0, 0.575);
}

.container {
    display: flex;
    flex-wrap: wrap;
    padding: 5px; 
    width: 600px;
    height: 600px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0px 0px 100px rgba(235, 86, 86, 0.849);
    margin: 50px;
}


.gridlayout { 
    box-sizing: border-box;
    padding: 10px;
    background-color: white;
    text-align: center;
    border: 1px solid rgba(90, 86, 86, 0.26);
}

#footer { 
    display: flex;
    margin: 20px;
    
}

a {
    font-size: 18px;
    color: black;
}