*{
    margin: 0px;
    padding: 0px;
}

html{
    background: #ffffff;
}

.boxTopStart{
    width: 100%;
    
    display: inline-block;
    box-sizing: border-box;
}

.boxLogoAnimation{
    width: 100%;
    
    display: inline-block;
    box-sizing: border-box;
}

.boxLogoAnimation img{
    transform: translateX(-200%);
    
    width: 700px;
    
    margin-top: 150px;
    margin-left: 35%;
    
    animation-name: animationLogo;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.boxLogo{
    width: 100%;
    
    padding: 20px;
    
    border-bottom: 2px firebrick solid;
}

.boxLogo img{
    width: 400px;
}

.boxWellcomeAnimation{
    width: 100%;
    
    margin-bottom: 0px;
    
    display: inline-block;
    box-sizing: border-box;
}

.boxWellcomeAnimation h1{
    transform: translateX(-200%);
    
    width: 70%;
    
    margin-left: 30%;
    margin-top: 150px;
    
    padding-left: 5%;
    
    color: black;
    
    text-align: left;
    text-decoration: none;
    font-family: Lalezar;
    font-size: 40px;
    
    box-sizing: border-box;
    
    border-bottom: solid firebrick 5px;
    
    animation-name: animationWellcome;
    animation-delay: 1.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.boxFirmsAnimation h2{
    transform: translateX(-200%);
    
    width: 70%;
    
    margin-left: 30%;
    margin-top: 5px;
    
    padding-left: 5%;
    
    color: gray;
    
    text-align: left;
    text-decoration: none;
    font-family: Arial;
    font-size: 20px;
    
    box-sizing: border-box;
    
    animation-name: animationWellcome;
    animation-delay: 1.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.boxNavigation{
    width: 100%;
    
    float: right;
    
    margin-bottom: 0px;
    
    display: inline-block;
    box-sizing: border-box;
    
    border-bottom: solid firebrick 2px;
}

#boxNav0{
    transform: translateX(-200%);
    
    animation-name: animationWellcome;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#boxNav1{
    transform: translateX(-200%);
    
    animation-name: animationWellcome;
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.navButton{
    width: 25%;
    height: 50px;
    
    float: left;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-sizing: border-box;
    
   
    
    text-decoration: none;
    font-family: Arial;
    font-size: 22px;
    font-weight: 600;
    
    color: firebrick;
    
    background-color: white;
    
    transition: 2s;
}

.navButton:hover{
    background-color: firebrick;
    
    color: white;
     
    transition: 0.5s;
}

#navButtonBig{
    width: 50%;
}

@keyframes animationLogo{
    from{
        transform: translateX(-200%)
    }
    to{
        transform: translateX(0px)
    }
}

@keyframes animationWellcome{
    from{
        transform: translateX(200%);
    }
    to{
        transform: translateX(0px);
    }
}