
body {
    --color1: #ffffff;
    --color2: #ffffff;
    --color3: #ffffff;
    --color4: #ffffff;
    --color5: #ffffff; 
    --header-height: 80px;
    --shadow: 0px 10px 20px -12px rgba(0,0,0,0.45);
    --gutter: 30px;
    --footer-height: 25px;
    
    font-family: 'Titillium Web', sans-serif;
    background-color: var(--color2);
    background-image: url(../assets/html-assets/background-tower.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(var(--footer-height));
}




.diceRolls {

    background-image: url(../assets/html-assets/dice-table.png);
    height: 255px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 40%;
    margin-bottom: 0%;
    margin-top: -45%;
    margin-left: 10%;
    }


section {
    background-image: url();
    width: 1100px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: var(--gutter);
    padding-bottom: var(--gutter);
    margin-top: var(--gutter);
    margin-bottom: var(--gutter);
   
}



#list li {
    display: inline;
}
.results {
    background-image: url(../assets/html-assets/results-background.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    font-size: 2em; 
    color: black;
    font-family: papyrus;
    font-weight: bold;
    text-shadow: red 2px 2px;
    margin-right: 40%;
    margin-bottom:2%;
    margin-top: 5%;
    margin-left: 10%
    

}

header {
    display: flex;
    justify-content: center;
    color: red;
    font-size: 100px;
    font-family: papyrus;
    margin-top: 0%;
    font-weight: bold;
    text-shadow: black 5px 5px;
    
}

input[type="radio"]:checked + img {
    border: solid 6px red;
    border-radius: 20px;
    background-color: red;
    opacity: .75;
}
input[type="radio"] {
    display: none;
}


#next {

    background-color: red;
    width: 300px;
    height: 50px;
    color: yellow;
    font-style: italic;
    font-weight: bold;
    font-size: 2em;
    font-family: papyrus;
    border-radius: 15px;


}

.link {

    background-color: red;
    width: 300px;
    height: 50px;
    color: yellow;
    font-style: italic;
    font-weight: bold;
    font-size: 2em;
    font-family: papyrus;
    border-radius: 15px;


}

footer {
    display: flex;
    justify-content: flex-end;
    background-color: var(--color3);
    box-shadow: var(--shadow);
    
}


h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.gutter-right {
    margin-right: 20px;
}

.main-logo {
    animation: pulse 5s infinite ease-in-out;
}

header img {
    height: var(--header-height);
}



content {
    width: 80%;
}

p {
    margin: var(--gutter);
}


  
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    height: var(--footer-height);
    display: flex;
    justify-content: flex-end;
    background-color: var(--color3);
    box-shadow: var(--shadow);
}
  
  @keyframes pulse {
    20% {
      transform: rotate3d(-10, -10, -10, 50deg) scale(1.2);
    }

    40% {
        transform: rotate3d(10, 10, -10, 50deg) scale(1);
    }

    60% {
        transform: rotate3d(-10, 10, 10, 50deg) scale(1.2);
      }

    80% {
        transform: rotate3d(10, 10, 10, 50deg) scale(1);
    }

  }

  .name {
    height: 30px;
    width: 200px;
    margin-bottom: 10px
  }

  .button {
      height: 30px;
      background-color: red;
      color: white;
      font-family: papyrus;
      margin-bottom: 10px;
      border-radius: 5px;
  }

  #roll {
    height: 30px;
    background-color: red;
    color: white;
    font-family: papyrus;
    margin-bottom: 10px;
    border-radius: 5px;
    
  }