.no-select {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;                             
}


html { height: 100%; }

body {
    margin: 0;
    height: 100%;
}

h1 {
    font-family: 'poppins-bold';
    color: #595959;
    font-size: 20px;
}

.txt {
    font-family: 'poppins-regular';
    color: #595959;
    font-size: 15px;
}

.form {
    font-family: 'poppins-regular';
    border: 1px solid #CECECE;
    border-radius: 2px;
    width: 100%;
    height: 30px;
}

.form:focus {
    outline: none;
    box-shadow: none;
}

#navbar {
    position: relative;
    width: 100%;
    height: 5rem;
    background-color: rgb(44, 140, 0);
    color: white;
}

#navbar-left {
    position: absolute;
    display: grid;
    grid-template-columns: 5;
    grid-template-rows: 1;
    justify-content: start;
}

#navbar-right {
    position: absolute;
    right:0;
    display: grid;
    justify-content: end;
    grid-template-columns: 2;
    grid-template-rows: 1;
}

.nav-item {
    font-family:'poppins-regular';
    text-align: center;
    margin: 0 50px 0 50px;
    line-height: 80px;
    height: 100%;
    font-size: 12pt;
}

.nav-link:hover {
    cursor: pointer;
}

.nav-link {
    color: white;
    text-decoration: none;
}

.inputs {
    font-family: 'poppins-regular';
}

#nav-1 {
    height: 5rem;
    margin: 0;
    aspect-ratio: 4 / 1;
}

#nav-1 { grid-row: 1; grid-column: 1; }

#nav-2 { grid-row: 1; grid-column: 2; }

#nav-3 { grid-row: 1; grid-column: 3; }

#nav-4 { grid-row: 1; grid-column: 4; }

#nav-5 { grid-row: 1; grid-column: 1; }

#nav-6 { grid-row: 1; grid-column: 2; }

#bordered-coins {
    border: 1px solid white;
    padding: 5px;
    border-radius: 5px;
}

#coin-image {
    vertical-align: sub;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}


#registerPopup {
    height: 515px;
    width: 425px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);

    padding: 15px 30px 15px 30px;
    background: white;
    box-shadow: 0 0 20px 5px rgb(187, 187, 187);
    border-radius: 10px;
}

#loginPopup {
    height: 420px;
    width: 425px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);

    padding: 15px 30px 15px 30px;
    background: white;
    box-shadow: 0 0 20px 5px rgb(187, 187, 187);
    border-radius: 10px;
}

#register {
    width: 100%;
}

#login {
    width: 100%;
}

#register-output-box, #login-output-box { text-align: center }

.close {
    font-family: 'poppins-bold';
    border: none;
    border-radius: 0 10px 0 10px;
    width: 30px;
    height: 30px;
    background-color: #595959;
    color: white;
}

#close-register {
    position: absolute;
    right: 0;
    top: 0;
}

#close-login {
    position: absolute;
    right: 0;
    top: 0;
}

.title-btn {
    display: inline-block;
    margin: 20pt;
}

.title-btn:hover { cursor: pointer; }

.appear {
    animation-name: appear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

@keyframes appear {
    from { opacity: 0; }
    to { opacity: 1.0; }
}

.spinning {
    animation: rotation 1.5s infinite ease;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

.a {
    color: rgb(44, 140, 0);
    font-family: 'poppins-regular';
}

.a:visited {
    color: rgb(44, 140, 0);
    font-family: 'poppins-regular';
}

ul {
    list-style-type: none;
}

#no-account {
    box-sizing: content-box;
    width: calc(100% - 60px); /* 100% - 2 * horizontal_margin */
    text-align: center;
    position: absolute;
    bottom: 15px;
    font-size: 13px;
}