* {
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #00081f;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 0px;
    height: 100vh;
    z-index: 100;
    display: flex;
    background-color: #000d31;
    flex-direction: column;
    border-left: 0px solid #f3a3f3;
    box-shadow: 0 0 10px #000000;
    overflow: hidden;
}

.nav-slide-in {
    animation: 0.2s nav-slide-in;
    width: 300px;
    border-left: 5px solid #f3a3f3;
}

@keyframes nav-slide-in {
    from {
        width: 0;
        border-left: 0px solid #f3a3f3;
    }

    to {
        width: 300px;
        border-left: 5px solid #f3a3f3;
    }
}

.nav-slide-out {
    animation: 0.2s nav-slide-out;
    width: 0;
    border-left: 0px solid #f3a3f3;
}

@keyframes nav-slide-out {
    from {
        width: 300px;
        border-left: 5px solid #f3a3f3;
    }

    to {
        width: 0;
        border-left: 0px solid #f3a3f3;
        display: none;
    }
}

nav * {
    margin: 10px;
}

nav div {
    display: flex;
    flex-direction: row;
    margin: 0 0 20px;
}

nav button {
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #000d31;
    font-weight: bolder;
    font-size: 1.5em;
    border: none;
    background-color: #f3a3f3;
    border-radius: 10px;
}

nav button:hover {
    background-color: #ffffff;
}

nav h2 {
    margin: 10px 20px;
}

nav a {
    margin: 10px 20px;
    font-size: larger;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    border-bottom: 5px solid #f3a3f3;
    color: #f3a3f3;
    height: 200px;
    box-shadow: 0 0 10px #000000;
}

header > div {
    width: 100%;
    display: flex;
}
header > div > a {
    display: flex;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    margin: 0 32px;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.socials img, #menu_button {
    width: 48px;
    height: 48px;
    filter: invert(92%) sepia(13%) saturate(5402%) hue-rotate(223deg) brightness(104%) contrast(91%); /*#000000 to #f3a3f3*/
}

.socials img:hover, #menu_button:hover {
    filter: invert(100%);
}

#menu_button {
    cursor: pointer;
    margin: 20px;
    margin-left: auto;
}

main {
    background-color: #000d31;
    width: 80%;
    height: fit-content;
    margin: 32px auto;
    padding: 10px 20px 20px;
    border-left: 5px solid #f3a3f3;
    border-radius: 10px;
    box-shadow: 0 0 10px #000000;
}

main img {
    margin: 20px auto;
    width: 100%;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex > div {
    margin: 0 20px;
    width: 500px;
}

.flex > div img {
    width: 100%;
}

p {
    margin-left: 5px;
}

h1, h2 {
    margin: 10px 0;
}

ul {
    margin-left: 20px;
}

a {
    color: #6ae1ff;
}

a:hover {
    color: #a3e7f3;
}

a:active {
    color: #ffffff;
}

hr {
    border: none;
    border-top: 5px solid #f3a3f3;
    border-radius: 3px;
    width: 25%;
    margin: 32px;
    margin-left: 0;
}