
@import "base.css";

/*--------------------------------------
    Start screen
--------------------------------------*/

.start-screen{
    height: 100vh;
    width: 100%;
    background: rgb(160,219,242);
    background: linear-gradient(170deg, rgba(160,219,242,1) 17%, rgba(112,161,180,1) 93%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-screen i{
    font-size: 110px;
    color: white;
}

.start-screen .icon-holder{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: -20px;

    opacity: 0;
    -webkit-animation: fadeIn 0.7s forwards;
    -moz-animation: fade-in 0.7s forwards;
    animation: fadeIn 0.7s forwards;
    
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.start-screen h2{
    font-size: 52px;
    text-transform: uppercase;
    color: white;
    text-align: center;
     font-family: 'Source Sans Pro', sans-serif;

     opacity: 0;
     -webkit-animation: fadeIn 0.7s forwards;
     -moz-animation: fade-in 0.7s forwards;
     animation: fadeIn 0.7s forwards;
     
     -webkit-animation-delay: 0.4s;
     -moz-animation-delay: 0.4s;
     animation-delay: 0.4s;
}

.start-screen h3{
    color: white;
    font-size: 18px;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;

    opacity: 0;
    -webkit-animation: fadeIn 0.7s forwards;
    -moz-animation: fade-in 0.7s forwards;
    animation: fadeIn 0.7s forwards;
    
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.btn{
    width: 110px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color:#ed9d42;
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    font-size: 17px;
    border-radius: 15px;
    margin: 0 auto;
    margin-top: 30px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, 0) inset, 0 .4em 1em #76a9be;

    opacity: 0;
    -webkit-animation: fadeIn 0.7s forwards;
    -moz-animation: fade-in 0.7s forwards;
    animation: fadeIn 0.7s forwards;

    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.btn:hover{
    background-color:#ce8532;
}

@-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
    
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


        /*
        --------------------------------------------------------
        Media Queries
        --------------------------------------------------------
        */


        @media screen and (min-width: 320px) {
            .start-screen h3{
                font-size: 17px;
            }
        }
    
        @media screen and (min-width: 580px) {
            .start-screen h3{
                font-size: 18px;
            }
        }
    
        @media screen and (min-width: 768px) and (max-width: 1024px) {
   
        }
    
        @media screen and (min-width: 1024px) {
   
        }