<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body{
    margin: 0;
    padding: 0;
}

body{
    background: linear-gradient(13deg, rgba(19,15,1,1) 0%, rgb(65, 51, 32) 51%, rgb(80, 45, 0) 100%); 
}

a, a:link:active, a:visited:active{
	text-decoration: inherit;
	color: inherit;
	cursor: pointer;
}

*{
    box-sizing: border-box;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}

section.content{
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: black;
    min-height: 100vh;
}

.header{
    width: 100%;
    height: 400px;
    background-image: url('images/background_big_text.jpg');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 6px solid rgb(255, 255, 0);
}

.header_image_container{
    height: 100%;
}

.header_image_container img.right{
    width: 100%;
    max-width: 434px;
    float: right;
    top: 137px;
    backface-visibility: hidden;
    opacity: 0;
    animation-name: underbuild-image;
    animation-duration: 1200ms;
    animation-delay: 2000ms;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

@keyframes underbuild-image {
    0% {
        transform: translateX(150px) rotateY(-90deg) rotate(0deg) scale(0.82);
        opacity: 0;
    }
    71% {
        transform: translateX(-74px) rotateY(0deg) rotate(0deg) scale(0.82);
        opacity: 1;
    }
    79% {
        transform: translateX(-74px) rotateY(0deg) rotate(0deg) scale(0.82);
        opacity: 1;
    }
    100% {
        transform: translateX(-74px) rotateY(0deg) rotate(5deg) scale(0.95);
        opacity: 1;
    }
}
  
   
.header_logobox{
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: -98px;
    width: 100%;
}

.header_image_container img.left{
    width: 100%;
    max-width: 188px;
    margin: 0 27px;
    filter: drop-shadow(0px 0px 10px white);
    opacity: 0;
    animation-name: master-logo;
    animation-duration: 2000ms;
    animation-delay: 740ms;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

@keyframes master-logo {
    0% {
        opacity: 0;
        transform: translateX(-150px) rotate(-180deg);
        filter: drop-shadow(0px 0px 0px white);
    }
    50% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
        filter: drop-shadow(0px 0px 0px white);
    }
    80% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
        filter: drop-shadow(0px 0px 0px white);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
        filter: drop-shadow(0px 0px 10px white);
    }
}

.site_content{
    width: 100%;
    max-width: 784px;
    margin: 200px auto;
    margin-top: 131px;
    padding: 35px 0px;
    padding-top: 8px;
    text-align: center;
    background-color: rgb(32, 32, 32);
    color: rgb(235, 235, 235);
    border: 1px solid rgb(64, 64, 64);
    border-bottom: 6px solid rgb(255, 255, 0);
    border-radius: 14px 14px 0px 0px;
}

.site_content h1{
    font-size: 2.2em;
    padding: 0px 7px;
}

.site_content h2, p.list_item{
    text-align: left;
    max-width: 600px;
    padding: 0px 7px;
    margin: 0px auto;
}

.site_content p{
    font-size: 1.2em;
    max-width: 600px;
    margin: 0px auto;
    padding: 0px 17px;
}

.site_content p.list_item{
    margin: 12px auto;
}

a.facebook_link, a.contact{
    display: block;
    text-align: center;
    width: 100%;
    max-width: 237px;
    padding: 7px;
    margin: 37px auto;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.7px;
    background-color: rgb(14, 113, 243);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(159, 183, 255);
    border-radius: 7px;
}

a.contact{
    background-color: rgb(243, 229, 14);
    color: rgb(30, 30, 30);
    border: 1px solid rgb(255, 255, 255);
}

.footer{
    width: 100%;
    padding: 4px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.8px;
    text-align: center;
    color: rgb(243, 229, 14);
    background-color: rgb(32, 32, 32);
    border-top: 1px solid rgb(64, 64, 64);
}

@media screen and (max-width: 600px){
    .header_image_container img.right{
        max-width: 242px;
        top: 58px;
    }
    .header{
        height: 279px;
    }
    .header_logobox{
        bottom: -72px;
    }
    .header_image_container img.left{
        max-width: 133px;
    }
    .site_content h1{
        font-size: 1.8em;
    }
}</pre></body></html>