body {
    background-color: black;
    overflow: overlay;
    margin: 0;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

h1 {
    color:gainsboro;
    font-family: 'Montserrat';
    font-size: 50px;
    text-align: center;
    font-style: italic;
}

h2 {
    color:gainsboro;
    font-family: 'Montserrat';
    font-size: 40px;
    text-align: center;
}

#bar {
    background-color:#390f73;
    height: 68px;
    width: 100%;
    margin-top: 5px;
}

.option {
    width: 25%;
    height: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
}

.selected {
    background-color:#45138a;
    width: 25%;
    height: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: white;
}

.option:hover {
    background-color:#45138a;
    cursor: pointer;
}

.text-block {
    margin-top: 40px;
    line-height: 35px;
    font-size: 25px;
}

.half-block {
    display: inline-block;
    width: 50%;
    text-align: center;
    font-size: 15px;
}

a {
    text-decoration: none;
}

p {
    font-family: 'Montserrat';
    color:white;
}

#main {
    padding-top: 15px;
    padding-bottom: 30px;
}

#main a {
    color: white;
}

.link {
    opacity: 80%;
}

.link:hover {
    cursor: pointer;
    opacity: 50%;
}

.employees {
    margin: 0 auto;
    width: 90%;
    text-align: center;
    padding-bottom: 2%;
}

.employee {
    display: inline-block;
    width: 15%;
    min-width: 100px;
    height: fit-content;
    margin: 2%;
    background-image: radial-gradient(#2c0c58,#1b0836,#0a0214,black);
    border-radius: 50px;
}

.employee img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8%;
    display: block;
    width: 70%;
    max-width: 150px;
    height: auto;
}

.employee p {
    font-size:20px;
}

#newsletters {
    text-align: center;
    margin: 4%;
    height: fit-content;
}

.newsletter {
    display: inline-block;
    font-size: 25px;
    border-radius: 25px;
    border-width: 5px;
    border-style: solid;
    width: 10%;
    min-width: 100px;
    margin: 0 auto;
    margin-left: 10px;
    margin-right: 10px;
}

.newsletter:hover {
    background-color: #1f1f1f;
}

#newsletters a:hover {
    cursor: pointer;
}

#bottom {
    background-color: #1c1c1c;
    padding-top: 20px;
    padding-bottom: 20px;
}

#bottom a {
    color: darkgrey;
}

.saleboxes {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}

.salebox {
    display: inline-block;
    width: 32%;
    min-width: 300px;
    height: fit-content;
    border-radius: 25px;
    border-width: 5px;
    border-style: solid;
    border-color: #390f73;
    margin: 2%;
    background-image: radial-gradient(#1f1f1f, #080808);
}

.salebox img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 40%;
    max-width: 150px;
    height: auto;
    padding-top: 2%;
}

.salebox p {
    font-size: 20px;
}

h3 {
    text-align: center;
    font-family: 'Montserrat';
    color:white;
    font-size: 30px;
    margin-top:auto;
    margin-bottom:auto;
}

h4 {
    text-align: center;
    color:aqua;
    font-family: 'Montserrat';
    font-style: italic;
    font-size: 20px;
}

.image-span {
    width: 100%;
    height: fit-content;
    background-size: cover;
    background-position: center;
    margin-bottom: 4%;
}

.sidebar {
    width:40%;
    min-width: 250px;
    background-color: rgba(0, 0, 0, 0.6);
}

.sidebar h3 {
    padding-top: 10%;
    padding-bottom: 6%;
}

.sidebar p {
    margin-right: 10%;
    margin-left: 10%;
    padding-bottom: 8%;
    font-size: 20px;
}

form {
    margin: 4%;
    text-align: center;
}

form input {
    margin: 5px;
    width: 20%;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    background-color: black;
    color: white;
}

form #button {
    width: 10%;
    border-color: white;
    border-style: solid;
    border-width: 2px;
}

form #button:hover {
    cursor: pointer;
}

#failtext {
    color: red;
}