/*HEADER-------------------------------*/ header{ height: 100vh; } #header-content{ width: 80%; margin: 0 auto 0 auto; transform: translate(0, 50%); text-align: center; animation: 1s ease-in-out fade-in; } #content-left{ width: 40%; } #content-right{ width: 35%; height: 35%; } #content-right > img{ max-width: 100%; max-height: 100%; } #content-title{ font-size: 4.5em; font-weight: 900; margin: 0 0 0.3em 0; } #content-text{ font-size: 1.1em; margin: 0 0 1em 0; } #content-button{ font-size: 1.1em; margin: 0 auto; } /*SECTION*/ #staff > h1{ margin: 0 0 0.5em 0; } #staff > p{ margin: 0 1em 3em 1em; } #help{ background-color: rgb(22, 22, 22); color: var(--secondary-color); text-align: center; padding: 2em 0; margin: 4em 0; } #help > h1{ font-size: 2em; margin-top: 0; } #help > input{ width: 70%; background-color: var(--main-background-color); padding: 0.6em; border: none; border-radius: 20px; } #help > input:focus{ outline: none; } #help > a { margin: 1.5em auto 0 auto; } #tutoral iframe{ margin-right: 1em; } #tutoral-text{ width: 60%; margin-left: 2em; } /*ANIMATIONS*/ @keyframes fade-in { 0%{ opacity: 0; transform: translate(100%, 50%); } 100%{ opacity: 1; transform: translate(0%, 50%); } }