html {
    background-color: rgb(10, 12, 12);
    min-height: 100%; /* make sure it is at least as tall as the viewport */
    position: relative;
}

::-moz-selection { /* Code for Firefox */
    color: whitesmoke;
    background: rgba(255, 255, 255, 0.25);
}

::selection {
    color: whitesmoke;
    background: rgba(255, 255, 255, 0.25);
}

body {
    font-family: Nunito;
    font-weight: normal;
    color: whitesmoke;
    background-color: rgb(10, 12, 12);
    text-align: center;
}

#home {
    position: absolute;
    right: 20px;
    top: 17px;
    margin: auto;

    background: url("../resources/home_icon.png") no-repeat center;
    background-size: contain;

    width: 28px;
    aspect-ratio: 1;
}

    #home:hover {
        transform: scale(1.05);
        filter: brightness(0.75);
    }

    #home:active {
        transform: scale(0.95);
        filter: brightness(0.50);
    }

h1 {
    font-family: Rubik;
    font-weight: 600;
    user-select: none;
}

h2 {
    font-family: Nunito;
    font-weight: normal;
    font-size: 15px;
}

h3 {
    font-family: Nunito;
    font-weight: normal;
    font-size: 15px;
    width: 80%;
    max-width: 500px;
    margin: auto;
    margin-bottom: 10px;
}

ol {
    font-family: Nunito;
    font-weight: normal;
    font-size: 12px;
    color: darkgrey;
    width: 15%;
    min-width: 200px;
    margin: auto;
    text-align: left;
}

#container {
    position: relative;
    margin: 30px auto 30px auto;
    width: 80%;
    max-width: 500px;
    background-color: rgb(25, 25, 25);
    padding: 50px 20px 50px 20px;
    outline: none;
    border-radius: 25px;
}

#icon {
    width: 100%;
    fill: whitesmoke;
    margin-bottom: 30px;
}

#github {
    margin-top: 25px;
    fill: whitesmoke;
}

    #github:hover {
        fill: darkgray;
    }

#select {
    position: absolute;
    left: 0;
    right: 0;
}

#button {
    font-size: 13.5px;
    font-weight: bold;
    font-family: Nunito;
    color: inherit;
    margin: 20px auto;
    border: 0px;
    background-color: #1b679c;
    height: 30px;
    padding: 0 20px;
    border-radius: 9999px;
    cursor: pointer;
    outline: none;
    user-select: none;
    transform: scale(1);
}

    #button:hover {
        background: #5992ba;
        transform: scale(1.05);
    }

    #button:active {
        background: lightskyblue;
        transform: scale(0.95);
    }

#status {
    margin: 20px auto;
    border: none;
    border-radius: 9999px;
    width: 70%;
    height: 24px;
    background: rgb(50, 50, 50);
    visibility: hidden;
}

#bar {
    background: #2674ab;
    border-radius: 9999px;
    width: 0%;
    min-width: 24px;
    height: 24px;
}

#transfer {
    width: 100%;
    line-height: 24px;
    margin-top: -24px;
    user-select: none;
}
