:root {
    --bg-primary: #483D8B;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-accent: rgba(255, 255, 255, 0.95);
    --text-highlighted: #F7D3FF;
}

html,
body {
    font-family: 'Just Me Again Down Here', cursive;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: var(--bg-primary);
}

h1 {
    margin: 0;
    font-size: 3.6em;
}

p {
    font-size: 3em;
    padding: .1em;
    margin-top: -1em;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;
    color: var(--text-primary);
    width: 400px;
    line-height: .9;
}

::selection {
    background-color: transparent;
    text-decoration: underline;
    color: var(--text-highlighted);
}

i {
    font-size: 3em;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
}

#wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 30px;
    text-align: center;
}

@media only screen and (max-width: 934px) {
    .container {
        flex-direction: column;
    }
}

#name {
    font-family: 'Sacramento', cursive;
    color: var(--text-accent);
    font-size: 2.4em;
}

#avatar {
    height: 40vh;
    margin: -20px 0 -20px 0;
}

.fab,
.fas {
    height: 3vh;
    color: var(--text-primary);
    padding: 10px;
}

.fab:hover,
.fas:hover {
    color: var(--text-highlighted);
}
