body {
    margin: 0;
}

hr {
    margin: 0;
}

#main-content {
    position:fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 20px 0 0 20px;
    width: calc(100% - 20px);
    height: calc(100% - 100px);
    overflow-y: auto;
}

#img-eye {
    position: fixed;
    width: 50px;
    bottom: 100px;
    right: 20px;

    cursor: pointer;
}

#username {
    font-weight: bold;
}

#btn-nothing {
    margin-bottom: 10px;
}

.footer {
    position: fixed;
    width: 100%;
    height: 80px;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
}

.credits {
    font-style: italic;
    padding-top: 10px;
}

/***********All of the below code was provided by Scrimba.com***********/

:root {
    --superhero: 'Bangers', cursive;
    --space: 'Orbitron', sans-serif;
    --military: 'Black Ops One', cursive;
    --romantic: 'La Belle Aurore', cursive;
    --scary: 'Creepster', cursive;
    --cowboy: 'Rye', cursive;
    --regular: sans-serif;
    --fantasy: 'MedievalSharp', cursive;
    --font: var(--regular);
    --sharp: 0;
    --soft: 10px;
    --round: 100px;
    
    --image: var(--soft);
    
    --background: #f5f5f5;
    --text: #222222;
    
    --light: var(--background);
    --dark: var(--text);
}


body, html {
    margin: 0;
    padding: 10px;
    background: var(--background);
    color: var(--text);
    font-family: var(--font);
}

#avatar {
    width: 250px;
    border-radius: calc(var(--image) * 2);
    border: 4px solid var(--text);
}

a {
    color: var(--text);
}

input {
    display: block;
    margin: 20px 0 0;
    width: 160px;
    box-sizing: border-box;
    padding: 4px 8px;
    border-width: 1px; 
    border-style: solid;
    border-color:  var(--text);
    color: var(--text);
    background: none;
    border-radius: var(--image);
    font-family: var(--font);
}

::placeholder {
    color: var(--text);
}

button {
    border-radius: var(--image);
    padding: 5px 10px;
    border: none;
    background: var(--text);
    color: var(--background);
    font-weight: bold;
    box-sizing: border-box;
    display: block;
    margin: 8px 0;
    cursor: pointer;
    font-family: var(--font);
    width: 160px;
}
