body {
    margin: 0;
    overflow: hidden;
}

#main {
    margin: 0;
    padding: 0;
}

.bg {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    
    object-fit: cover;
    aspect-ratio: 16/9;
    height: 100%;
}

a {
	color: white;
	text-decoration: underline;
	font-family: "Albert Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.biz {
	position: fixed;
	left: 44.7%;
	bottom: 15px;
}

#main_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
}

#maintext {
    color: white;
    font-family: "Albert Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
    font-size: 3.5em;
    cursor: default;

    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

#socs {
    display: inline-block;
    text-align: center;

    padding: 5px 0px 0px 5px;

    border-radius: 15px;

    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 4s; /* Firefox < 16 */
     -ms-animation: fadein 4s; /* Internet Explorer */
      -o-animation: fadein 4s; /* Opera < 12.1 */
         animation: fadein 4s;
}

#socs img {
    width: 50px;
}

#socs a {
    text-decoration: none;
}

@font-face {
    font-family: Tie;
    src: url(assets/Tie.otf);
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}