*{
    padding: 0;
    margin: 0;
    font-family: 'Muli', sans-serif;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html{
    background-color: whitesmoke;
}

#infoBubble{
    width: 25px;
    height: 25px;
    position: absolute;
    top:5%;
    bottom: 0;
    right: 2%;
    
    border: 3px solid black;
    border-radius: 50%;
    text-align: center;
}

#infoBubble p {
    color: black;
    font-size: 20px;
}

#infoBox{
    opacity: 0;
    display: none;
    transition: all 1s;
    
    width: 240px;
    height: 75px;
    position: absolute;
    top: 8%;
    
    right: 5%;
    bottom: 0;
    
    border: 1px solid black;
    text-align: center;
}

#infoBox p {
    color: black;
    font-size: 16px;
    line-height: 25px;
}

.welcome{
    position: absolute;
    top: 10%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.welcome h1{
    font-size: 40px;
    text-align: center;
    color: black;
}

.welcome h2{
    font-size: 25px;
    text-align: center;
    color: black;
}

a{
    text-decoration: none;
    color: inherit;
}

.sliders{
    position: absolute;
    top: 25%;
    bottom: 0;
    right: 0;
    left: 20%;
    margin: auto;
}

.sliders h3{
    padding: 10px 10px 10px 30px;
    margin: 10px;
    display: inline;
}

#imageContainer{
    background-color: black;
    padding: 10px;
    width: 75%;
    height: 75%;
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 0;
    left: 0;
}

#mainImage{
    width: 96%;
    height: 94%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}