@font-face {
    font-family: Ubuntu;
    src: url(./assetes/fonts/Ubuntu/Ubuntu-Regular.ttf);
  }

  @font-face {
    font-family: SansPro;
    src: url(./assetes/fonts/Source_Sans_3/static/SourceSans3-Regular.ttf);
  }



body{
    display: flex;
}

.container-box{
    display: flex;
    justify-content: center;
    align-items: center;    
    min-height: 100vh;
    flex: 1;
}

.image-add{
    margin-top: 70px;
}


.logo{
    width: 175px;
    height: 79px;
    margin-bottom: 55px;
}

.banner-text{
    border-radius: 4px;
    background: #6B6B6B;
    color:  #FEFEFE;
    font-family: Ubuntu;
    font-size: 36px;
    line-height: 64.5px;
    padding: 10px 29px;
    margin-bottom: 44px;
}

.normal-text{
    color: #050505;
    font-family: SansPro;
    font-size: 18px;
    line-height: 24px; 
}


.btn-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 70px;
}

.links{
    width: 148px;
    height: 55px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #F76A22;
    color: white;
    text-decoration: none;
    margin-right: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.links:hover{
    background: #bc490f;
    text-decoration: none;
    color: white;
}

.sentention-text{
    color: #1F1F1F;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 64.5px;
    margin-top: 80px;
}

.orange-text{
   color: #F76A22; 
}



#eye{
    animation-name: eyeClose;
    animation-duration: 6s;
    transform-origin: 0px 0px;
    position: relative;
    /*some prefix*/-transform-origin: 0 0;
    animation-iteration-count: infinite;
}

@keyframes eyeClose {
    0%   {opacity: 1;}
    24%   {opacity: 1;}
    25%  {opacity: 0;}
    30%  {opacity: 1;}
    100% {opacity: 1;}
  }

  #bottom-dot{
    animation-name: bottomClose;
    animation-duration: 3s;
    transform-origin: 0px 0px;
    position: relative;
    /*some prefix*/-transform-origin: 0 0;
    animation-iteration-count: infinite;
}

@keyframes bottomClose {
    0%   {opacity: 1;}
    50%  {opacity: 0;} 
    100% {opacity: 1;}
  }


@media screen and (max-width: 580px){
    .banner-text {
        font-size: 18px;
        padding: 5px 29px;
        margin-bottom: 24px;
    }

    .logo{
        margin-top: 40px;
        margin-bottom: 35px;
    }

    .btn-box{
        margin-top: 30px;
    }

    .sentention-text{
        margin-top: 40px;
        font-size: 26px;
    }
  }

