:root {
    --grid-cols: 1;
    --grid-rows: 1;
  }

  h1 {
    text-align: center;
    color: rgb(221, 188, 0);
    font-family: 'Lobster', sans-serif;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 400px; 
    padding: 20px 0px 20px 0px;
    background-color: #a82626;
    border-style: solid;
    border-color: #a82626;
    border-width: 0px 80px 0px 80px;
    border-radius: 20px 20px 0px 0px;
  }

  body {
    background-color: #ededed;
  }

  footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'montserrat'
  }

  img {
    height: 30px;
    width: 30px;
    margin-top: 10px;
  }

  img:hover {
    transform: rotate(360deg);
    scale: 1.2;
  }
  
  #container {
    display: grid;
    grid-gap: 0;
    width: 400px;
    height: 400px;
    border: solid;
    border-width: 2px 80px 80px 80px;
    border-color: #a82626;
    border-radius: 0px 0px 30px 30px;
  }

  #settings {
    margin-top: 20px;
  }
  
  .grid-item {
    border: 1px;
    border-color: black;
    background-color: white;
  }

  .flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3rem; 
  }

  .title-container {
    height: 78px;
  }

  .column {
    float: center;

  }

  .button{
    display:inline-block;
    padding:0.3em 1.2em;
    margin:0 0.1em 0.1em 0;
    width: 150px;
    border:0.16em solid #a82626;
    border-radius:2em;
    box-sizing: border-box;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight:300;
    color:#000000;
    text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
    text-align:center;
    transition: all 0.2s;
    }

  .button:hover{
    border-color: rgba(255,255,255,1);
    background-color: #a82626;
    color: white;
    scale: 1.1;
    }