*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #C39CE6;
}

.header{
    padding: 30px;
    text-align: center;
    font-size: 20px;
    background: #C39CE6;
    background-size: cover;
    overflow: hidden;
  
}

.header h1,h2, p{
    color: aliceblue;
    margin: 10px;
}

nav{
    float: left;
    width: 28%;
    margin: 5px;
    height: 300px;
    background:#E0E67A;
    padding: 20px;
    border-radius: 15px;
    border: rgb(156, 141, 0) solid 5px;
}

nav ul{
    list-style-type: none;
}
.button{
    background-color:#9DE685; /* Green */
    border: none;
    color: white;
    height: 80px;
    margin-top: 5px;

    width: 100%;
    text-align: center;
    text-decoration: none;
    
    font-size: 16px;
    border-radius: 5px;
    color: black;
}

.button:hover{
    background-color: #7fb46d;
    box-shadow: 1px 1px 2px black, 0 0 25px rgb(255, 230, 0), 0 0 5px rgb(139, 113, 0);
    
}

article{
    float: left;
    width: 70%;
    background:#9DE685 ;
    overflow: hidden;
    margin: 5px;
    border-radius: 15px;
    border: lightslategray solid 5px;
   
   
}

.img{
    max-width:100px; 
    height: auto; 
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
section::after{
    content: "";
    clear: both;
    display: flex;
    justify-content: space-between;
    
}

.numberContainer{

    float: left;
    padding: 15px;
    margin:15px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgb(102, 102, 102), rgb(158, 158, 158), rgb(226, 225, 162));
    border-radius: 100%;
    box-shadow: 1px 1px 2px black;
   

}
.numberContainer h2{
    font-size: 30px;
    text-align: center;
    margin-top: 2vh;
    
}

footer{
    background-color: rgb(83, 165, 1);
    text-align: center;
    overflow: hidden;
    content: "";
    clear: both;
    display: flex;
    justify-content: space-between;
    margin: 5px;
    padding: 10px;
    border: rgb(129, 63, 173) solid 5px;
    border-radius: 15px;
    
}

footer a, h3, p{
    color: aliceblue;
    margin: 10px;
}

i.fab {
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.6em;
    background-color: rgb(2, 116, 36);
  
  }


.awardTxt{
    text-align: center;
    text-shadow:2px 2px 10px rgb(255, 238, 0); ;
    font-size: 10vh ;
   color: rgb(0, 140, 255);


}


/* for modal popup */
/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(160, 93, 223); 
    background-color: rgba(0,0,0,0.4); 
}
  
  /* Modal Content/Box */
.modal-content {
    background-color: rgb(83, 165, 1);;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 2px solid #888;
    border-radius: 5px;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
.close {
    color: rgb(0, 80, 31);
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
.close:hover,

.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid rgb(145, 101, 165);
    border-radius: 4px;
    box-sizing: border-box;
  }
  

  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    text-align: center;
    
    padding: 8px;
  }
  
  tr:nth-child(even) {background-color: #f2f2f2;}


/* using this for mobile screen */
@media only screen and (max-width: 768px) {

    nav, section{
        float: none;
        width: 100%;
        margin: 0;
        
    }

    article{
        overflow: hidden;
        width: 100%;
        height: 100%;
        margin: 0%;
    }

    .button{
        width: 90%;
        height: 60px;
    }

}

