body{
    background: #101C10;
    margin: 0;
}

.container {
    position: relative;
}

.bkg {
    max-width: 100%;
    outline-offset: 50px;
    outline: 10px dashed rgb(102, 89, 79, 0.4);
}

/* paper body */

.paper {
    background: white;
    max-width: 80vh;
    align-items: center;
    padding: 8%;
    font-family: monospace;
    box-shadow: 7px 5px 2px 1px #525252;
    flex: 1 1 45%;
    margin: 15% 10% 0 10%;
}

.qr {
    height: 10vh;
}

.pos {
    text-align: right;
    border-bottom: 1px dashed black;
    margin-bottom: 10%;
    padding-bottom: 10px;
}

.mem {
    text-align: right;
}

video {
    width: 100%;
    height: auto;
    max-height: 400px;
    margin-right: 5;
}

/* menu */

main {
    border-top: 20px solid #46434E;
    margin-top: 10%;
}

nav {
    margin: 5em;
    text-align: center;
}

ul {
    font-family: tahoma;
    list-style-type: none;
    font-size: 20px;
}

li a{
    text-decoration: none;
    color: #7e505a;
}

li:hover {
    background-color: #c0b0b4;
}

li a:focus, li a:hover {
    color: white;
  }

li {
    border: 2px solid #7e505a;
    background: transparent;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #46434E;
    width: 100%;       
    box-sizing: border-box;
    margin: auto;
}

.small-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 2em;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 1.5vw;
    max-width: 100vw; 
}

li i {
    font-size: 5vw; 
    margin-bottom: 1vw;
}