html {
    box-sizing: border-box;
    font-size: 16px;
  }
  

body {
    display:flex;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    /* background-color: black; */
    margin: 0;
}

.header {
    font-size: 4rem;
    font-weight:900;
    letter-spacing: -3px;
    margin-bottom: -1px;
}


.gradient-text {
    /* Fallback: Set a background color. */
    background-color: blue;
    
    /* Create the gradient. */
    background-image: linear-gradient(45deg, #003ce0, #ff0095, #003ce0);
    
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;
  
    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }

.sub-header {
 font-size: 1.5rem;
 margin-bottom: 50px;

}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
    margin: 40px 16px ;
}

.row-container {
    display: flex;
    justify-content: flex-start;
    /* align-items: flex-start; */
    flex-wrap: wrap;
}

.card {
    width: 400px;
    background-color: rgb(0, 195, 255);
    box-shadow: 0px 0px 15px 5px  rgba(0, 195, 255, 0.445);
    min-height: 10rem;
    margin: 20px;
    margin-bottom: 30px;
    padding: 10px 16px;
    padding-top: 30px;
    text-align: center;
    border-radius: 10px;
}


.card:hover {
    background-color:rgba(0, 195, 255, 0.733);;
    /* border: 1px solid red; */
}

.card a {
    text-decoration: none;
    color: black;
}

.card h1 {
    letter-spacing: -2px;
    font-weight: 900;
}
  
.card p {
    font-size: 1.2rem;
}
 
