/***************************** SYL + TOP LINK ***************************************************/


:root {
    --body-color: #423203;
    --body-background-color:  #f0ebe6;
    --canvas-background-color: #ffffff;
    --link-color: rgb(160, 1, 1);
    --link-hover-color: #ff0000;
    --font-header: 'Lucida Sans', Lucida, Arial, Helvetica, sans-serif;
    --font-body:  'Lucida Sans', Lucida, Arial, Helvetica, sans-serif;

}

body {
   width: 100%;
   padding: 0;
   margin: 0;
   color: var(--body-color);
   background-color: var(--body-background-color);
   font-size: 7.5 vmin;
   font-family:  var(--font-body);
   display: flex;
   justify-content: center;
   align-items: center;
}

a, a:visited {
 color: var(--link-color);
 text-decoration: none;
}
a:hover {
 color: var(--link-hover-color);
}
a:focus {
  outline: none;
  text-decoration: none;
}
.container {
 display: grid;
 grid-template-rows: 50px auto;
}
.container-homelink {
 grid-row: 1 / 2;
 text-align: left;
}

#homelink {
 position:absolute;
 top: 0; 
 left: 0;
 width: 50px;
 height: 20px;
 margin: 0;
 padding: 4px 4px 10px 10px;
 background-color: #fdefef;
 border-right: 3px solid #423203;;
 border-bottom: 3px solid #423203;;
 border-radius: 0px 0px 10px 0px;
}
.homelink a{
 text-decoration: none;
}
.homelink a:hover {
 text-decoration: underline;
}
.homelink a:focus {
    outline: none;
}

h2 {
    position: absolute;
    top: 30px;
    transform: translateX(-50%, -50%);
}

/********************************************* game ******************************************/




#canvas-1 {
    position: relative;
    top: 140px;
    height: 600px;
    width: 600px;

 }

.controls {
    position: absolute;
    z-index: 10;
    top: 80px;
    transform: translateX(-50%, -50%);
}

.controls, select, option {
    font-size: 25px;
}