* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
      Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-image: url('/images/carretera.jpg');
	background-size: cover; 
	text-align: center;
  }
  
  .main-container {
    padding: 50px;
  }
  
  /* HEADING */
  
  .heading {
    text-align: center;
  }
  
  .heading__title {
    font-weight: 600;
  }
  
  .heading__credits {
    margin: 20px 0px;
    color: #888888;
    font-size: 25px;
    transition: all 0.5s;
  }
  
  .heading__link {
    text-decoration: none;
  }
  
  .heading__credits .heading__link {
    color: inherit;
  }
  
  /* CARDS */
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .card {
    margin: 15px;
    padding: 10px;
    width: 300px;
    height:90px;
    min-height: 50px;
    display: grid;
    grid-template-rows: 20px 50px 1fr 50px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
  }
  
  .card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.10);
  }
  
  .card__link,
  .card__exit,
  .card__icon {
    position: relative;
    text-decoration: none;
	color: blue;
	font-weight:bold;
  }
  
  .card__link::after {
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
  }
  
  .card__link:hover::after {
    width: 100%;
  }
  
  .card__exit {
    justify-self: end;
  }
  
  .card__icon {
    font-size: 30px;
  }
  
  .card__title {
    font-weight: bold;
    color: black;
	text-align:center;
	font-size:20px;
  }
  
  .card__apply {
    align-self: center;
  }
  
  /* CARD BACKGROUNDS */
  
  .card-1 {
    background: radial-gradient(#1fe4f5, #3fbafe);
  }
  
  .card-2 {
    background: radial-gradient(#fbc1cc, #fa99b2);
  }
  
  .card-3 {
    background: radial-gradient(#76b2fe, #b69efe);
  }
  
  .card-4 {
    background: radial-gradient(#60efbc, #58d5c9);
  }
  
  .card-5 {
    background: radial-gradient(#f588d8, #c0a3e5);
  }
  
  .card-6 {
    background: radial-gradient(#f588d8, #c0a355);
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 1600px) {
    .cards {
      justify-content: center;
    }
  }
  
  @media (min-width: 1960px) {
     body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
      Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-image: url('/images/carretera.jpg');
	background-size: cover; 
	text-align: center;
  }
  }
  
  .OutlineText {
    padding: 15px;
	font: Tahoma, Geneva, sans-serif;
	font-size: 32px;
    color: white;
    text-shadow:
    /* Outline */
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,  
    -2.5px 0 0 #000000,
    2.5px 0 0 #000000,
    0 2.5px 0 #000000,
    0 -2.5px 0 #000000;
}

.OutlineText2 {
    padding: 10px;
	font: Tahoma, Geneva, sans-serif;
	font-size: 24px;
    color: white;
    text-shadow:
    /* Outline */
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,  
    -2.5px 0 0 #000000,
    2.5px 0 0 #000000,
    0 2.5px 0 #000000,
    0 -2.5px 0 #000000;
}