html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    font-family: arial;
    padding: 0;
    margin: 0;

    color: #000000;
    background-color: #ffffff;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    height: 100%;
}

a {
    text-decoration: none;
    color: #000000;
}
a:link, a:visited, a:active {
    color: #e5186c;
}
a:hover {
	color: #000000;
}

.love-desktop-frame {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
}

.love-desktop-frame:-webkit-full-screen {
    /* Auto width and height in Safari/Chrome fullscreen. */
    width: auto;
    height: auto;
}

#canvas {
    outline: none;
    vertical-align: bottom;
    border: 0;
    position: fixed;
    background-color: #f8f8f8;
    width: 100%;
    height: 100%;
}

#message-container {
	text-align:center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
}

#progress-border {
  	border: 1px solid #000000;
}
  
#progress-bar {
	background-color: #000000;
  	width: 0%;
   	height: 16px;
}

#message-container > div {
  	background-color:transparent;
}

#more-info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e5186c;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 15px 8px 15px;
    line-height: 1.2em;
    font-family: "Object Sans", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#more-info-btn:hover {
    background-color: #000000;
}
