* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: Poppins, sans-serif;
}

body{
    background-color: #f7c414;

    background-image: url(img/backgroundLines.svg);
    background-repeat: no-repeat;

    background-size: 100%;
    background-position: 0px -100px;
    
}

.wrapper{
    overflow-x: hidden;
    position: relative 
}

/* Logo */
.logo{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.logo img{
    width: 150px;
}

/* Heading */

h1{
    text-transform: uppercase;
    text-align: center;
    background-color: #017dc7; color: white;
    font-weight: 700;
    margin: 5px 0 15px 0;
    padding: 5px;
    font-size: 36px;
    border-top: 3px solid #ffffff;  border-bottom: 3px solid #ffffff;

    transform: rotate(-1deg);
}

h1 span{
    color: #f7c414;
}

/* Table */

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f7c414;

}

th, td {
    border: 5px solid #f7c414;
    text-align: center;
    padding: 8px;
}

td{
    background-color: #ffffff;
}

th {
    background-color: #017dc7; color: #ffffff;
}

th:nth-child(1){
    border-radius: 30px 0 0 0;
}

th:last-child{
    border-radius: 0 30px 0 0;
}

.checked {
    text-decoration: line-through;
}

input[type="checkbox"] {
    width: 2em;
    height: 2rem;
    accent-color: #017dc7;
  }

.number, .drink-text{
    font-weight: 700;
}

.drink-text span{
    font-weight: 500;
}

.brewers-text a{
    color: #000000; font-weight: 500;
}


@media only screen and (max-width: 600px) {
    table {
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 330px) {
    input[type="checkbox"] {
        width: 1.2em;
        height: 1.2rem;
      }

      th, td {
        padding: 4px;
    }
    
  }


/* Footer */

.footer{
    height: 50px;
    background-color: #5a5a5a;
    padding: 10px;
    color: white;
    text-align: center;
}

.footer a{
    color: white;
    text-decoration: none;
}


/* Bunting */


#buntingLeft{
    position:absolute;
    left: -150px;
    top: 50px;

    width: 320px;
    transform: rotate(-32deg);
    overflow: hidden;
}

#buntingRight{
    position:absolute;
    right: -120px;
    top: 25px;

    width: 320px;
    transform: rotate(32deg);
    overflow: hidden;
}

#beerGlass{
    position:absolute;
    right: 45px;
    top: 85px;

    width: 80px;
    transform: rotate(-8deg);
}

#facebookLogo{
    position:absolute;
    left: 80px;
    top: 90px;

    width: 50px;
}

/* Reszing for smaller screens */
@media only screen and (max-width: 400px) {
    #buntingLeft{
        position:absolute;
        left: -180px;
        top: 40px;
    
        width: 280px;
        transform: rotate(-32deg);
        overflow: hidden;
    }
    
    #buntingRight{
        position:absolute;
        right: -150px;
        top: 25px;
    
        width: 320px;
        transform: rotate(32deg);
        overflow: hidden;
    }
    
    #beerGlass{
        position:absolute;
        right: 15px;
        top: 100px;
    
        width: 60px;
        transform: rotate(-8deg);
    }
    
    #facebookLogo{
        position:absolute;
        left: 35px;
        top: 80px;
    
        width: 50px;
    }

    h1{
        font-size: 32px;
    }
    
}



/* Terms & Conditions */

.bodyText{
    padding: 10px;
    background-color: #f7c414;
    max-width: 1000px;
    margin-right: auto; margin-left: auto;
}

.bodyText h3{
    padding-top: 10px;
}