@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@300&display=swap');

:root{
    --color:#ff0000 ;
    --background:#000000 ;
    --button:#950101 ;
    --infobox:#ff4646 ;
    --text:whitesmoke ;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

/*body{
    background-image:linear-gradient(var(--text), var(--color), var(--button), var(--infobox), var(--background));
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    text-transform: capitalize;
    height: 100%;
}
*/

.card-container{
  margin: 0 20%;
}

.card{
  display: inline-flex;
  position: relative;
  text-align: justify;
  justify-content: space-evenly;
}

.parallax {
  /* The image used */
  background-image: url("images/banner.jpg");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.infobox{
  background-color: var(--infobox);
}

.infobox h2, .infobox h1{
  color:var(--text);
}

.card-container{
  display: inline-block;
  position: relative;
  justify-content: space-between;
}

.card{
  
}