h1 {
    color: green;
    font-size: 14px;
}

html {
    height: 100%;
}

body {
    height: 100%;
    background: rgb(121, 143, 149);
    background: radial-gradient(circle, rgba(121, 143, 149, 1) 0%, rgba(72, 86, 91, 1) 100%);
    background-size: 100% auto;
    
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
    align-items: center;
    justify-content: left;
    max-width: 1000px;

    display: inline-flex; 
    flex-wrap: wrap;
 }

 a:link, a:visited {
    text-decoration: none;
   }
.tile {
    box-shadow: 5px 5px 15px darkslategray;
    border-radius: 5px;
    background: rgb(195, 131, 34);
    background: linear-gradient(0deg, rgba(195, 131, 34, 1) 0%, rgba(255, 255, 253, 1) 100%);
    width: 420px;
    height: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: bolder;
    font-style: normal;
    margin: 30px;
   
        object-fit: contain;
 
        color: rgba(72, 86, 91, 1);
      
      
}

.tileImage{
    max-height: 90%;
    max-width: 95%;
    margin: 20px;
}