

@font-face {
  font-family: 'MilkMustacheBB';
  src: url('fonts/MilkMustacheBB.woff') format('woff');}

@font-face {
  font-family: 'Zach';
  src: url('fonts/zach.woff') format('woff');
}

@font-face {
  font-family: 'Atari';
  src: url('fonts/atari.woff') format('woff');
}

@font-face {
  font-family: 'Fixedsys';
  src: url('fonts/fixedsys.woff') format('woff');
}


body {
    font-family: MilkMustacheBB, sans-serif;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    height: 100vh;
    background-image:url('images/bg.png');
}


.container {
    display: grid;
    grid-template-areas:
        "header header"
        "content sidebar"
        "footer footer";
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    width: 90%;
    max-width: 1220px;
}

.container div {
    grid-area: unset;


    color: white;
    font-size: 1.5rem;
    padding: 10px;
    border: 5px solid black;
    border-radius:10px;

}

#header {

    grid-area: header;
    background-color: transparent;
    max-height:198px;
    margin:auto;
    border:0px;

}

#content {
    background-color: #E81641;;
    grid-area: content;
    justify-content: left;
    align-items: left;
}

#sidebar {
    background-color: #ADE333;;
    grid-area: sidebar;
}

#footer {
    background-color: #6357C8;
    grid-area: footer;
    max-height: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

h1 {
  color:#96ff00;
  font-family:Zach;
  font-size:64px;
}

h2 {
  color:#96ff00;
  font-family:Zach;
  font-size:36px;
}

h3{
  color:#ffffff;
  font-family:Zach;
  font-size:30px;
}
