:root {
    --cor-button-menu: #3A8DEB;
    --cor-button-start: #2D7DD8;
    --cor-span-txt: #1565C0;;
  }

  body{
    margin: 0px;
    padding: 0px;
    background-color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;

  }

  span{
    color: var(--cor-span-txt);
  }
  h2,p, h1{
    margin: 0px;
  }

  .main{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
  align-items: center;
  }

  .nav{
    width: 65%;
    height: 15%;
    display: flex;
    flex-direction: row;
    align-items: center;
 
  
  

    .logo{
      width: 50%;
      display: flex;
      flex-direction: row;
      align-items: center;

      #logo{
        width: 3rem;
      }
      p{
        font-size: 1.2rem;
        margin-left: 10px;
        color: #141414;
      }
    }
    .links{
      width: 50%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: right;
     

    }

  }
  #ButtonAcount{
    height: 2.3rem;
    width: 6rem;
    border-radius: 10px;
    border: 0px;
    background-color: var(--cor-button-menu);
    color: #fff;
  }
  #ButtonAcount:hover{
    background-color:rgb(84, 138, 201);
    cursor: pointer;
  }
  .buttonLogin{
    margin-right: 30px;
    text-decoration: none;
    color: #141414;
    font-size: 1rem;
  }

  .homePage{
    width: 65%;
    height: 85%;
    display: flex;
    flex-direction: row;
   
    .descricao{
      width: 50%;
      height: 100%;
      .txtDescricao{
        width: 100%;
        height: 100%;
        display: flex;
        #desc1{
          font-size: 2.6rem;
          color: #141414;
        }
        flex-direction: column;
  
        justify-content: center;
        #descricao2{
          margin-top: 2rem;
          font-size: 1.3rem;
          color: #383838;
        }
      }
    }
    .imgHome{
      width: 50%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: right;
      #homeImg{
        width:87%;
      }
    }

  }
 
 #start{
  height: 3.5rem;
  width: 8.5rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 0px;
  background-color: var(--cor-button-start);
  color: #fff;
  margin-top: 3rem;
 }

 #start:hover{
  background-color: #4792e7;
  cursor: pointer;
 }


 .section2{
  width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
  align-items: center;
  
 }

 @media (max-width: 600px){
.main{
  display: none;
}
body{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

@media (min-width: 600px){
#cell{
  display: none;
}
}


