html {
    height: 100%;
}

body {
    height: 100%;
    background-color: black;
}

.navbar {
    background-color: black;
}

.nav-link {
    color: white;
}

.nav-link:hover {
    color: #79fd94;
}

#about {
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 18pt;
    transform: translateX(-50%) translateY(-50%);
}

footer {
    position: relative;
    width: 100%;
    height: 27px;
}

.fixed-bottom-1 {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.fixed-bottom-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

#copyright {
    color: white;
    float: right;
    padding-right: 18pt;
}

#purchase-button {
    position: absolute;
    top: 30%;
    color: white;
    background-color: black;
    border-radius: 4pt;
    width: 35%;
}

#purchase-button:hover {
    color: #79fd94;
    border-color: #79fd94;
}

#payment-cancelled {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    font-size: 18pt;
    transform: translateX(-50%) translateY(-50%);

}

#payment-success {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    font-size: 18pt;
    transform: translateX(-50%) translateY(-50%);

}

.shirt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.decal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#size-error {
    color: red;
    text-align: center;
    padding-top: 10pt;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #79fd94 !important;
}