* { transition: all .2s linear; }

:root {
	--scimus-brand-1: #8D0F7E;
	--scimus-brand-2: #982398;
	--scimus-brand-3: #78276F;
	--scimus-brand-4: #72a0ac;
	--scimus-brand-4a: #57808B;
	--scimus-brand-5: #e8e5e3;
	--scimus-brand-6: #ff0000;
}

/* Custom Scroll */
/* 
::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 7px; 
}

::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--scimus-brand-1);
  border-radius: 20px;
  border: 1px solid #transparent;
}
*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body {
    box-sizing: border-box;
    font-family: "Lato", Verdana, "sans-serif";
    transition: padding .2s linear;
    animation:padanim 1s 0s forwards;
}

.wrapper {
    width: 100%;
    height: 100%;
    background-image: url('./img/scimus-bg-0.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper-animated {
	position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    padding: 0 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 850px;
    height: 90%;
    overflow: auto;
    }

.logo {
    max-width: 180px;
    opacity: 0;
    animation:bgFade 1s 1.5s forwards;
}

h1 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 900;
    opacity: 0;
    animation:bgFade 1s 2.5s forwards;

}
.content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 20px;
    opacity: 0;
    animation:bgFade 1s 2.5s forwards;

}
p {
    font-size: 1rem;
    font-weight: 600;
}
#gradient-canvas-container {
    position: absolute;
    width: 100%;
    height: 100%;
	top: 0;
	left: 0;
    z-index: -1;
}
#gradient-canvas {
	--gradient-color-1: #7c42ff;
	--gradient-color-2: #f3baef;
	--gradient-color-3: #80d7f3;
	--gradient-color-4: #fbfbfd;
}

#cookie-notice {
    display: none;
    position: fixed;
    right: 30px;
    left: 30px;
    z-index: 999;
    max-width: 450px;
    margin: auto;
    padding: 0.5rem;
    border: 1px solid #710e65;
    background-color: #77066A;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.05);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-size: 13px;
    text-align: center;
    color: #fff;
    bottom: 30px;
    border-radius: 0.25rem;
}
#cookie-notice:hover {
    background-color: #8e007d;
}
.cookie-notice-more {
	margin: 0 0.25rem;
	text-decoration-style: dotted;
	color: inherit;
}
.cookie-notice-close {
    padding: 0 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    line-height: 1.5;
    text-decoration: none;
    color: #8e007d;
    background: #ffffff;
    font-size: 12px;
}
.cookie-notice-close:hover {
    background: #D9D9D9;
}
@media only screen and (min-width: 768px) {
	h1 {
		font-size: 1.75rem;
	}
	#cookie-notice {
		bottom: 50px;
	}
	.cookie-notice-close {
		float: right;
	}
}

@media(min-width: 768px){
    body { padding: 30px !important; transition: padding .2s linear; }
    .container {height: auto;}
    p { font-size: 1.1rem; }
}
@media(min-width: 960px){
    .logo { max-width: 280px; }
    h1 { font-size: 2.85rem; }
}
@media(min-width: 1200px){
    .content.msg-sm p { font-size: 1.3rem; }
    .content.msg-lg p { font-size: 1.5rem; }
}
@keyframes bgFade {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    } 
} 
@keyframes padanim {
    from {
        opacity:0;
        padding:0;
    }
    to {
        opacity:1;
        padding: 15px;
    } 
}
