* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.8em;
    background-color: #323639;
    color:white;
    width: 100%;
    min-height: 100vh;
    height: 100%;
}

a,a:link,a:visited,a:active,a:hover,a:focus {
    text-decoration: none;
    outline: none;
    color:#e75c0c;
}

.logo {
    height: 60px;
    display: flex;
}

.logo-text {
    height: 100%;
}

.logo-icon {
    height: 100%;
    aspect-ratio: 1/1;
    background: url('./images/logo-icon.png') orange;
    background-size: 100%;
    background-position: center;
    margin-right: 20px;
}

.load {
    max-width:475px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 28px;
}

.load-anim {
    width: 25%;
    height: 100%;
    background-color: #e75c0c;
    position: absolute;
    left: -25%;
    animation: identifier 2s linear infinite;
}

header {
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
}

embed {
    width: 100%;
    height: 100vh;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.center > * {
    position: relative;
    bottom: 80px;
}

@keyframes identifier {
    0% {
        left: -25%;
    }
    100% {
        left: 125%;
    }
}