* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('http://fonts.cdnfonts.com/css/the-moon');

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    font-family: 'The Moon', sans-serif;
}

h1,
p {
    text-align: center;
    color: #ffb3ff;
    padding: 20px;
    font-size: 30px;
}

.pinkseperator {
    width: 100%;
    height: 100px;
    left: 0px;
    background: linear-gradient(to right bottom, #ffb3ff 49%, #3f3f3f 50%);
}

.blueseperator {
    width: 100%;
    height: 100px;
    left: 0px;
    background: linear-gradient(to left bottom, #66e0ff 49%, #3f3f3f 50%);
}

/* Twitch */

.twitch {
    display: flex;
    height: 100vh;
    background-color: #3f3f3f;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

/* Twitch */

/* Highlights */

.highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #3f3f3f;
}

.hl-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    padding: 20px;
}

.hl-clips {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.hl-clips>h1 {
    color: #66e0ff;
}

.hl-clips>iframe {
    width: max(16vw, 350px);
}

/* Highlights */

/* About me */

.aboutme {
    white-space: pre-line;
    background-color: #3f3f3f;
}

.amcontent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 20px;
}

.aminfo {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.aminfo>img {
    width: max(14vw, 230px);
    border: #66e0ff 1px solid;
    border-radius: 20px;
}

.aminfo>p {
    font-size: 20px;
}

.aminfo>a {
    display: flex;
}

.aminfo>a>img {
    width: max(2vw, 50px);
}

.aminfo>a>img:hover {
    transition: all 0.3s ease 0s;
    filter: brightness(0.7);
}

@media (max-width: 700px) {
    .amcontent {
        display: flex;
        flex-direction: column;
    }
}

/* About me */

/* Copyright */

.copyright {
    background-color: #3f3f3f;
    height: 10%;
    border-top: 1px solid #ffb3ff;
}

.copyright p {
    text-align: center;
    font-size: 20px;
}

/* Copyright */