body, html {
    margin: 0;
    padding: 0;       
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: white;    
}

#intro {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#logo, #text{
    position: absolute;
}

#logo {
    width: 80%;
    height: auto;    
}

#text {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color:#555555;
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;    
    background: #ffffff;
    color: white;
    text-align: center;
    
}

#header img{
    width: 80%; 
    max-width: 500px;
    margin: auto;
    margin-top: 1vh;
}

#main{
    color:#555555;
    width: 60%;
    text-align: justify;
    font-size: 1.1em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;    
    box-sizing: border-box;
    margin: 1vh auto;    
}

#start{
    background-color: #008e3d;
    padding: 10px;
    border-radius: 10px;
    color: white;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
}

.no-animations #logo,
.no-animations #text,
.no-animations #main {
  animation: none;
  transition: none;
}


