body {
    font-family: "Arial", sans-serif;
    margin: 0;
    overflow-x: hidden;
    background-color: black;
    position: relative;
}

a{
    text-decoration: none !important;
}

/* Hack to modify the rendering in Chrome, Edge, and Opera (NOT Safari, where it will look bad) 
In Firefox, it's not a valid property value so the selector doesn't matter*/
@media screen and (-webkit-min-device-pixel-ratio:0)
and (min-resolution:.001dpcm) {
    .ChromiumRenderHack{ 
        image-rendering: -webkit-optimize-contrast;
    }
}

#bigcontainer{
    min-height: calc(100vh - 37px);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center 12%; */
    background-position: center right;

}
.flexcontainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    z-index: 1;
    max-width: 100vw;
    overflow: hidden;
}

.OuterCont{
    width: 300px;
    background-color: #00000054;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin: 20px;
    position: relative;
}

.ProdTitle{
    width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 22px;
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 9px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    /* background-color: rgba(49, 88, 114, 0.7); */
    background-color: #4771c194;
    color: #e7e7e7;
    cursor: default;
}

.ProdImg{
    width: 280px;

}

.ProdCaption{
    color: black;
    font-size: 16px;
    padding: 12px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    background-color: #ffffffa1;
    font-family: Roboto, arial, sans-serif;
    border: 2px solid black;
    border-radius: 6px;
    margin-bottom: 0;
    cursor: default;
}

.ProdSymbol{
    height: 40px;
    max-width: 280px;
    opacity: .7;
}

.flexcontainer2{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    z-index: 1;
    overflow: hidden;
}
.ProdTitle2{
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 22px;
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 9px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    background-color: black;
    color: #e7e7e7;
}

#Footer{
    position: absolute;
    bottom: 2px;
    right: 0;
    overflow: hidden;
    z-index: 99;
}

.UDhomepage{
    cursor: default;
    position:relative;
}
.UDhomepage:before{
    content: attr(data-text); 
    position:absolute;
    top:50%;
    /* left: 50%; */
    transform:translatey(-50%);
    width: 100%;
    left: 0;
    padding:10px;
    box-sizing: border-box;
    border-radius:5px;
    background:rgba(50, 50, 50, .95);
    color: rgb(200,200,200);
    text-align:center;
    opacity: 0;
    transition: opacity .2s;
    z-index: 99;
}
.UDhomepage:hover:before{
    opacity: 1;
}
.UDhomepage a{
    cursor: default;
}
