* {
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: 'londrina';
    src: url(../fonts/Londrina_Outline/LondrinaOutline-Regular.ttf);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-image: url("../img/wall.png");
}

a{
    display: flex;
    justify-content: center;
    font-family: 'londrina';
    font-weight: bold;
    font-size: 25px;
    color: white;
    
}

header {
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
        
header a {
    background-color: #ff0000;
    font-size: 45px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3px #000;
    padding: 15px 30px;
    font-family: 'londrina';
    font-weight: bolder;
    color: #FFF;
}

header a:hover {
    opacity: 0.9;
}

header :nth-child(2) {
    background-color: #00FF1E;
}

header :nth-child(3) {
    background-color: #FE077E;
}

header :nth-child(4) {
    background-color: #5E00FF;
}

.about{
    display: flex;
    justify-content: center;
}

.about h1 {
    color: #FFF;
    font-size: 55px;
    font-family: 'londrina';
    font-weight: bolder;
}

.gamebox{
    display: flex;
    justify-content: center;
}

.game{
    width: 1000px;
    height: 600px;
    margin: 10px 100px 50px 100px;
    background-color: #1b1e25;
    box-shadow: 0px 0px 20px 3px #000;
}


footer {
  
    display: flex;
    width: 100%;
    height: 20vh;
    background: radial-gradient(circle, #3D3D40 40%, #5C5A5B 100%);
    justify-content: space-between;
    align-content: flex-end;
    flex-wrap: wrap;
    margin-top: auto;
}

#canvas{
    border:2px solid black;
    background-position: center;
    background-image: url(../leoniespel/img/backgroundAi.png);

   
}