body {
    color: white;
    background-color: rgb(41, 41, 41);
    font-family: sans-serif;
}

a {
    color: #0ed66f;
    text-decoration: none;
}


ul, li {
    padding: 0px;
    list-style-type: none;
}


#main-frame {
    display: grid;
    grid-template-columns: 1fr 3fr; /* fr = fraction */
    column-gap: 10px;
    row-gap: 10px;
}

header {
    grid-column: span 2; /*Expand the header on the 3 columns*/
    text-align: center;
    justify-content: center;
}

header h1 {
    display: inline-block;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
}

article {
    grid-column: span 3;
    text-align: center;
}


article .title {
    font-size: larger;
    text-align: center;
    padding: 10px;
    border: 0;
}

article #Presentation .content {
    text-align: center;
}

article #Presentation .content p {
    margin-left: 5px;
    margin-bottom: 7px;
}

article #Presentation .content img {
    width: 50%;
    height: 50%;
}

article #Presentation .content div {
    justify-content: center;
    align-content: center;
}


#pancake {
    animation: loading 2.5s linear infinite;
}


/* Responsive */

@media screen and (max-width: 980px) {
    
    header h1 {
        display: inline-block;
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

@keyframes loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }