html {
    height: 100%; /* This isn't default, for some reason.*/
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #303035;
    color: rgba(255, 255, 255, 88%);
    margin-left:10%;
    margin-right:12%;
    height: auto;
}

hr {
    width: 100%;
}

p {
    display: block;
    margin: 1%;
}

a{
    color: rgba(255, 255, 255, 88%);
}

/* Everything regarding the navbar, and its buttons.*/

#navbar {
    border: 2px;
    border-radius: 10px;
    padding: 1%;
    background-color: black;
    width: 100%;
}

.selector{
    display: inline-block;
    width: max-content;
    border: 2px solid;
    border-color: black;
    border-radius: 5px;
    user-select: none;
    transition: 0.2s;
    padding: 1%;
}

.selector:hover {
    transition: 0.2s;
    font-size: 1.5em;
    border: 5px solid;
    border-color:black;
    background-color: rgba(255, 255, 255, 88%);
    border-radius: 10px;
    cursor: pointer;
    color: black;
}




/* Everything that's in the Page id. */
#page {
    text-align: justify;
    color: black;
    margin-top: 1%;
    border: 2px;
    border-radius: 5px;
    padding: 1%;
    background-color: rgba(255, 255, 255, 88%);
    width: 100%;
    height: 100%;
}

/* Everything in a drag and drop area*/
#area{
    border: 2px dashed;
    border-radius: 50px;
    border-color: rgba(255, 255,255, 44%);
    stroke-dasharray: initial 20px, 50px;
    text-align: center;
    padding: 10%;
    align-items: center;
}