@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
*{
    font-family: "Pixelify Sans", sans-serif;
}

body{
    width: 100%;
    height: 100%;
  /* Add your background pattern here */
    background-color: #ffffff;
    background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
}


nav{
    background-color: black;
}

main{
    /* Colors */
    background-color:rgb(23, 142, 57) ;
    
    /* Positions */
    width: 90vw;
    height: 90vh;
    margin: auto;
    padding: 20px;
    border-radius: 0px 0px 10px 10px;

    /* Flexbox */
    display: flex;    
    flex-direction: column;

}

.info{
    background-color: beige;
    border-radius: 10px;
    padding: 10px;
}

.hero{
    
    text-align: center;
    
    padding: 40px 10px 40px 10px;
    color: rgb(193, 255, 196);
    font-weight: 700;
    font-size: 30px;
    
}