@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Secular+One&family=Zilla+Slab&display=swap');

:root{
    --primary-color:#facc15;
    
}

body{
    font-family: 'Montserrat', sans-serif;
    width: auto;
    block-size: fit-content;
  
}

.container{
    display: block;
    max-width: 800px;
   margin: auto;
   background-color: var(--primary-color);
}

.mainHeader{
    text-align: center;
    font-size: xx-large;
    font-weight: bolder;
    padding: 2rem;
   border: black solid ;
   border-radius: 1rem;
}

.content{
    border: black solid;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.explaination{
    text-align: center;
    padding: 1rem;
 font-weight: bold;
}

.sub-head{
    padding: 1rem;
    font-weight: bold;
    font-size: x-large;
   
}

.box{
 padding: 1rem;   
 font-size: x-large;
 font-weight: bold;
 text-align: center;
 border-color: black;
 border-width: medium;
}

.button{
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
}

.table{
    margin: 0;
    table-layout: fixed;
    width: 100%;
    text-align: center;
}

.table th, td{
    padding: 0.4rem;
    border-collapse: collapse;
    border: solid --primary-color;
    font-weight: bold;
    background-color: white;
    
    
}


.error-msg{
    font-weight: bold;
    color: red;
    font-size: larger;
 padding: 2rem 0rem 0rem 0rem;
   
}



.primary-link{
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
    border:solid black;
    text-decoration: none;
    color: black;
    cursor: pointer;

}

.inline{
    display: inline;
    font-weight: bold;
    
}

.icon{
    margin-left: 0;
    max-width: 30px;
    max-height: 30px;
    padding-top: 2rem;
    padding-right: 4rem;
}

.footer{
   
    display: block;
    max-width: 800px;
   margin: auto;
    background-color: var(--primary-color);
    padding-bottom: 1rem;
    border-radius: 0.5rem;
    border-bottom-left-radius: 2rem;
    text-align: center;
    border: black solid ;
    
}