/* Public CSS */

@media screen and (min-width: 992px){
	html{
		font-size: 18px;
	}
}

@media screen and (max-width: 992px) and (min-width: 768px){
	html{
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) and (min-width: 480px){
	html{
		font-size: 10px;
	}
}
@media screen and (max-width: 480px){
    html{
        font-size: 8.5px;
    }
}


*{
    border: 0;
	margin: 0;
	padding: 0;
}

ul, ol {
    list-style: none;
}

a{
    text-decoration: none;
    cursor: pointer;
}

.bottomInfo{
    font-size: 1.0rem;
    line-height: 1.8rem;
    color: #f3e7ff;
    text-decoration: none;
    transition: color 0.3s;
}

a.bottomInfo:hover{
    color: #d1a0fe;
}

.linkImg{
    height: 100%;
    width: auto;
}