body {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(121, 140, 164, 0.7), rgba(121, 140, 164, 0.99)) no-repeat
            fixed,
        url("assets/Artboard%201.png") repeat fixed left top 20px;
    background-color: #93b0dc;
    color: #324061;
    font-family: sans-serif;
    font-size: 1em;
}
#header {
    background: url("assets/modulebanner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 60%;
}
.bgcol {
    background: linear-gradient(to bottom, #dbe2ee, #93b0dc);
}
#navlinks > a {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
    min-width: 7.7vw;
    padding: 7px;
    text-align: center;
    border-radius: 10px;
    margin: 1%;
    background: linear-gradient(to top, #7491c6, #e2ecff, #aecbf8);
    border: 1px solid #7491c6;
    user-select: none;
}
#navlinks > a:hover {
    background: linear-gradient(to bottom, #7491c6, #e2ecff, #aecbf8);
}
span#title {
    font-weight:bolder;
    font-size: 1.5em;
}
hr {
    margin: 2px 0;
    border: 1.2px solid #9ac4e7;
    width: 80%;
    border-radius:10px;
}
.neutral {
    border: 2px rgb(172, 255, 251) solid;
    background-color: rgba(9, 240, 255, 0.34);
}
.cute {
    border: 2px rgb(255, 140, 195) solid;
    background-color: rgba(255, 192, 232, 0.37);
}
.cool {
    border: 2px rgb(92, 153, 255) solid;
    background-color: rgba(76, 148, 255, 0.37);
}
.elegant {
    border: 2px rgb(191, 100, 255) solid;
    background-color: rgba(168, 17, 255, 0.25);
}
.chaos {
    border: 2px rgb(253, 255, 130) solid;
    background-color: rgba(97, 255, 149, 0.37);
}
.decklink {
    text-decoration: none;
    color: #324061;
    transition: 0.3s;
    font-size:85%;
    z-index:0;
}
.decklink:hover {
    text-decoration: underline;
    z-index:4;
    transform: scale(1.05)
}

.deckcontainer {
    z-index: 0;
    position: relative;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(.47,0,.2,1);
}
.deckcontainer:hover {
    z-index: 4;
    transform: scale(1.08);
}

.deck > img {
    z-index: 0;
    aspect-ratio: 51/41;
    position: relative;
    transition: 0.05s ease-in-out;
}
.deck > img:hover {
    z-index: 4;
    transform: scale(1.5);
}
#logBox {
    width: 100%;
}
.dateBox {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 4% 0;
}
.datedrop {
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.activity {
    display: flex;
    flex-flow: column wrap;
    width: 60%;
}
.log {
    box-sizing: border-box;
    padding: 3px 8px;
    font-size: 0.8em;
    border-radius: 10px;
    margin: 0.5%;
    display: flex;
    flex-flow: column wrap;
}
.meta {
    background-color: rgba(112, 169, 219, 0.42);
    border: #70a9db 2px solid;
}
.game {
    background-color: rgba(143, 237, 195, 0.45);
    border: #8fedc3 2px solid;
}
.service {
    background-color: rgba(252, 237, 145, 0.42);
    border: #fced91 2px solid;
}
.trade {
    background-color: rgba(255, 182, 243, 0.46);
    border: #ffb6f3 2px solid;
}
.logdetails {
    display: none;
}
.log:hover .logdetails {
    display: block;
}
.log:hover span:not(.logdetails) {
    font-size: 1.3em;
}
.log:hover span:not(.logdetails) {
    transition: 0.1s;
    margin-bottom: 3px;
}




#notice {
    background: linear-gradient(to bottom, #dbe2ee, #93b0dc);
    display: none;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    width: 50%;
    border-radius: 10px;
    margin: 0.5%;
    border: 5px rgb(147, 193, 220) double;
    & p {
        margin: 5px;
    }
}





















