:root {
    --textColor: #fff;
    --invertedTextColor: #000;
    --font: sans-serif;
}

html {
    margin: 0;
    height: 100%;

    background-image: url('images/sky.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: relative;
    background-color: #01122c;

    font-family: var(--font);
    color: var(--textColor);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: fit-content;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

hr {
    border: 0;
    height: 1px;
    margin: 0 10px 10px;
    display: block;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(85, 85, 85), rgba(0, 0, 0, 0));
}

.container {
    display: flex;
    flex-direction: column;
}

.description {
    color: var(--textColor);
    text-align: center;
    margin: 27px auto;
    /* margin-top: 10px; */
    /* width: 90%; */
    max-width: 500px;
}

.description a {
    color: var(--textColor);
}

/*
.profilePicture, .profilePicture img {
    position: relative;
    width: 130px;
    height: 130px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}
*/

.userName {
    color: var(--textColor);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px 0;
}

.link {
    position: relative;
    background-color: transparent;
    color: var(--textColor);
    border: solid var(--textColor) 2px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .link:hover {
        background-color: var(--textColor);
        color: var(--invertedTextColor);
    }
}

body > iframe {
    border: solid var(--textColor) 2px !important;
}

