/* Wrapper (Limit the size of the page) */
#wrapper {

    display: flex;
    flex-direction: column;

    width: 80%;
    margin-left: auto;
    margin-right: auto;
    min-width: 750px;
    max-width: 1280px;
    box-shadow: 1px 1px 5px #221811;

    background-color: #fefefa;

}

/* Remove any style of ordered list */
ol li{

    list-style: none;

}

html {

    --default-opacity: 0.2;
    --hover-opacity: 0.1;
    overflow-x: hidden;
  
}

/* Button style */
button {

    border: none;
    
    color: inherit;
    font: inherit;

    background: none;

  }