@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300;400;500;600;700&display=swap');

body 
{
    background-color: rgb(6, 0, 24);
    margin: 0;
    font-family: 'Overpass Mono', monospace;
    color: white;
}

.inline_form 
{
    display: flex;
    flex-direction: column;
    margin: 20px;
}
.inline_form * 
{
    margin: 2px;
}

a 
{
    color: rgb(95, 0, 95);
}

.center 
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;

}

.login_box 
{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.login_title 
{
    margin: 10px;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
}

.checkout_button 
{
    width: 100%;
}

.login_box input
{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 94%;
}

#register_box
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#register_box *
{
    display: block;
    margin: 5px;
}

input 
{
    padding: 5px;
    width: 200px;
    height: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

button,
input[type='submit']
{
    background-color: purple;
    color: white;
    padding: 10px;
    padding-left: 20px;
    padding-right:20px;
    border-radius: 5px;
    border-color: rgb(73, 0, 73);
    transition: 0.2s;
    font-weight: bold;
    cursor: pointer;
}
button:hover,
input[type='submit']
{
    background-color: rgb(73, 0, 73);
}

#user_dropdown 
{
    display: none;
    background-color: rgba(128, 128, 128, 1);
    position: absolute;
    right: 0;
    width: 25%;
    padding: 10px;
}
#user_dropdown .user_button
{
    display: block;
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
}
#user_dropdown .user_button:hover
{
    display: block;
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    background-color: rgb(61, 61, 61);
}
.hidden 
{
    display: none;
}

#basketcontainer 
{
    display: none;
    background-color: rgba(128, 128, 128, 1);
    position: absolute;
    right: 0;
    width: 25%;
    padding: 10px;
}

.basketelement 
{
    padding-top: 5px;
    padding-bottom: 5px;
}

.productcontainer
{
    margin: 10px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.boxdisplay 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 300px;
    height: 300px;
    background-color: rgb(53, 43, 57);
    border-radius: 10px;
    outline:rgb(115, 93, 124) 10px;
    cursor: pointer;
    transition: 0.5s;
}

.boxdisplay:hover 
{
    width: 320px;
    height: 320px;
}

.productboximage 
{
    display: block;
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
}

.pboxfiller
{
    flex: 1;
}

.productboxname 
{
    font-size: large;
    margin-top: 15px;
    text-align: center;   
    font-weight: bold;
}

#webcontent 
{
    margin: 10px;
    font-family: 'Overpass Mono', monospace;
    color: white;
}

#webcontent h1 
{
    text-align: center;
}

#webtitle 
{
    font-family: 'Righteous', sans-serif;
}

.topbar 
{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: blueviolet;
    overflow: hidden;
    box-shadow: 10px rgb(38, 28, 67);
}

.topbar a 
{
    display: inline-block;

    padding-left: 10px;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 25px;

    color: white;
    text-decoration: none;
    font-size: 2em;
    font-family: 'Russo One', sans-serif;
    font-weight: 300;
    transition: 0.2s;

    cursor: pointer;
}
.right 
{
    float: right;
}

.topbar a:hover
{
    background-color: rgba(99, 23, 171, 1);
} 

#footer 
{
    background-color: blueviolet;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.footeritem 
{
    color: white;
    text-align: center;
}
