* {
    box-sizing: border-box;
  }
  
  html {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
  }
  
  body {
    margin: 0;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1em;
  }
  
  .row {
    display: flex;
  }
  
  .center {
    justify-content: center;
  }
  
  .left {
    justify-content: flex-start;
  }
  
  .right {
    justify-content: flex-end;
  }
  
  .between {
    justify-content: space-between;
  }
  
  .around {
    justify-content: space-around;
  }
  
  .middle {
    align-items: center;
  }
  
  /* Cambiar alineacion en dispositivos pequeños */ 
  @media (max-width: 768px) {
    .wrap {
      flex-wrap: wrap;
    }

    .course--logo {
      height: 60px;
      width: 60px;
      margin: 0 auto;
    }
    
    .course--logo--img {
      height: 60px;
      width: 60px;
    }

  } 
  
  .top {
    align-items: flex-start;
  }
  
  .column {
    flex-direction: column;
  }
  
  .home {
    background-image: linear-gradient(90deg, #1D406D, #3F67A9);
    background-attachment: fixed;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .home__content {
    text-align: center;
    margin: 8rem 0 4rem 0;
  }
  
  .home__title--vote {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
  }
  
  .home__title--electronic {
    color: #F5A623;
    font-size: 40px;
    text-transform: uppercase;
    margin:  1rem 0;
  }
  
  .home__title--year {
    color: #fff;
    font-size: 40px;
  }
  
  .home__title--name {
    display: block;
    font-weight: 30px;
    text-align: center;
    font-weight: 200;
    color: #fff;
  }
  
  .home__title--input {
    height: 40px;
    width: 400px;
    text-align: center;
    margin: .5rem;
    font-size: 16px;
    font-weight: 500;
    margin: 2rem 0 2rem 0;
  }
  
  .home__title--button {
    text-decoration: none;
    border: 0px;
    border-radius: 2px;
    background-color: rgba(255,255,255, .25);
    display: block;
    height: 40px;
    width: 400px;
    text-align: center;
    margin: 0 auto;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
  }
  
  .logo {
    height: 25px;
    width: 25px;
    margin: 0;
  }
  
  .logo--img {
    height: 25px;
    width: 25px;
  }
  
  .footer__home {
    padding: 0 4rem;
  }
  
  .logo__footer {
    margin-left: .25rem;
    color: #fff;
  }
  .courses {
    padding: 2rem 0;
    text-align: center;
  }
  
  .courses__title {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 0;
    padding-top: 2rem;
  }
  
    
  .courses__list {
    padding: 2rem 0;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .course {
    border: none;
    width: 30%;
    padding: 1rem;
  }
  
  .course:hover {
    transform: scale(1.1);
    border: 0px;
  }
  
  .course--logo {
    height: 90px;
    width: 90px;
    margin: 0 auto;
  }
  
  .course--logo--img {
    height: 90px;
    width: 90px;
  }
  
  .course--name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 1rem 0 0 0;
  }
  
  