a {
    text-decoration: none;
    color: unset;
}
body {
    margin: 0; padding: 0;
    height: 100%; width: 100%;
    background-color: inherit; /* inherit bg colour from colour class */
    background-image: url('pix/bg.png');
}
h1,h2 {
    font-family: 'Cantarell', sans-serif;
    margin: 0; padding: 0;
    text-align: center;
    text-transform: uppercase;
}
h1 {
    font-size: 5em;
    text-transform: uppercase;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
h2 {
    font-size: 2em;
    color: inherit;
}
hr {
    margin: 0 30% 10px 30%;
    border-width: 1px;
    border-style: solid;
    border-color: inherit; /* inherit bg colour from colour class */
}
html {
	height: 100%;
}
p {
    font-family: 'Cantarell', sans-serif;
    font-size: 0.92em;
    color: inherit; /* inherit bg colour from colour class */
    margin: 0;
    text-align: center;
}

/* General Classes */
.colour { /* Change colour here */
    color: #9585A2;
    background-color: #2b2730;
}
.container {
    width: 100%; height: 100%;
    overflow: hidden;
}
.center { /* Container for the image/bio */
    display: block;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 0;
}
/* Content on the left */
.content {
    display: inline-block; vertical-align: top;
    width: 0; height: 450px;
    background: #2b2730;
    animation: chachaSlide 0.8s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
}
.interior { /* content interior */
    text-align: center;
    font-size: 16px;
    padding: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fade 1s;
    animation-delay: 1.6s;
    animation-fill-mode: forwards;
}
/* Image on the right */
.cover {
    display: inline-block; vertical-align: top;
    width: 250px; height: 450px;
    outline: 3px solid #2b2730;
    outline-offset: -3px;
    background-image: url('pix/Beautiful-Sunrise-Clouds-Scenery-Paddy-Field-Anime-4K-.jpg');
    background-size: cover;
    background-position: center;
}

/* Content */
.avi {
    width: 100px; height: 100px;
    display: block;
    margin: 0 auto;
    border-width: 3px;
    border-style: solid;
    border-color: inherit;
    background-image: url('pix/sora.jpg');
    background-size: cover;
}
.name {
    padding: 10px 0;
    letter-spacing: 4px;
    font-size: 1.8em;
}
.iconContainer {
    display: block;
    text-align: center;
    padding: 20px 0;
}
.icons {
    font-size: 1.5em;
    margin: 0 5px;
    color: inherit;
}
.icons:hover {
    color: #F4E4EC; transition: 0.2s all;
}

/* Misc */
.anchor {
    display: block; margin: 20px auto 0 auto;
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
}
.more {
    font-size: 1.8em;
    color: inherit;
    animation: more 2.5s;
    animation-delay: 2s;
    transition: 0.2s all;
}
.more:hover {
    color: #F4E4EC;
}

/* Animations */
@keyframes chachaSlide { /* Content opening animation */
    0% { width: 0; }
    100% { width: 330px; }
}
@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes more {
    0% { transform: translateY(0px); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0px);  }
    75% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile CSS */
@media screen and (max-width: 1080px) {
    .cover {
        display: none;
    }
    #credit {
        display: none;
    }
    .content {
        animation-delay: 0.1s;
    }
    .interior {
        animation-delay: 0.9s;
    }
}

