
body {
    margin: 0;
    background-color: #91bbff;
    color: #fff;
    font-family: 'Roboto Mono', monospace;
}

.loaded {
    animation: loaded 1s cubic-bezier(0, 0, 0, 1);
    transform: scale(1) !important;
}

@keyframes loaded {
    from {transform: scale(0)}
    to   {transform: scale(1)}
}

#profile {
    margin: 15px;
}

#pfp {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 5px #91BBFF, 0px 0px 0px 10px #fff;
    margin: 15px 25px 15px 15px;
    background-size: cover;
    transform: scale(0);
}

#name {
    display: block;
    font-size: 2.5em;
    font-family: 'Anton', sans-serif;
}

.list img {
    width: calc(100% - 30px);
    margin: 15px;
}

.grid {
    margin-top: 15px;
}

.grid img {
    width: calc(100% / 3 - 4px);
    object-fit: cover;
    margin: 2px;
}

#mode {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

#mode div {
    height: 25px;
    width: 25px;
    background-size: cover;
}

#grid {
    background-image: url("grid.png");
}

#list {
    background-image: url("list.png");
}

#show {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0,0,0,.7);
}

footer {
    text-align: center;
    padding: 15px;
}

a {
    color: #fff;
}