/*____________________________________________
______________________________________________
______________________________________________
General rule regardless of screen size*/
/*Styling for generic font*/

/*Gap above and below the page*/
.container {
    margin-top: 20px;
    margin-bottom: 80px;
}

/* Style the button  */
.title {
    background-color: rgb(164,164,164);
    color: black;
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    font-weight: bolder;
    margin-top: 5%;
    border-radius: 1em;
    border: none;
    }
/*Position of button*/
button {
        margin: 0 auto;
        display: block;
    }
  
/* Styling for the allergen content. */
  .content {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 10px;
    margin: auto;
}

/*Position of table*/
table{
    margin-left: auto;
    margin-right: auto;
}
/*Styling of table*/

table td{
    text-align: left;
    padding-left: 30px;
  }

/*Styling for decelration*/
p {
    color: white;
   letter-spacing: 2px;
    text-align: center;
    padding-right: 5%;
    padding-left: 5%;
    }
.footer{
    color: black;
}
/*____________________________________________
______________________________________________
______________________________________________
Settings for smaller device e.g. mobile phones*/
@media only screen and (max-width: 480px) {
        table td {
            font-size: 100%;
            min-width: 100%;
            letter-spacing: 2px;
        }
        img {
            max-width: 9%;
            
        }
        .title {
            min-width: 90%;
            letter-spacing: 2px;
            max-width: 90%;
            
        }
        button{
            font-size: 100%;
        }
        p{
            font-size: 60%;
        }
    }


/*____________________________________________
______________________________________________
______________________________________________
Settings for Medium devices*/
@media only screen and (min-width: 481px) {

    table td {
        font-size: 130%;
        min-width: 100%;
        letter-spacing: 3px;
    }
    img {
        max-width: 15px;
    }
    .title {
        min-width: 400px;
        max-width: 400px;
        letter-spacing: 3px;
    }
    button{
        font-size: 130%;
    }
    p{
        font-size: 90%;
    }    
}