@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
body {
    font-family: "Source Sans Pro";
    background-image: url('./background-1.png');
    background-attachment: fixed;       
    
    
}


#header {
    
    margin-top:30px;
    text-align:center;
}


#h-content{
    
    
}

#welcome{

}


main {

    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    
    padding:20px;
}

a:link {
    color: black;
    text-decoration: underline;
    
    
}

h5 {
    margin:8px;
    
    
}

a:hover {
    color: grey;
    
}

a:visited {
    color: grey;
    
}

.box{
    display: inline-block;
    background-color: white;
    position:absolute;
    margin-top: -40px;
    left:50%;
    transform: translateX(-50%);
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    border-color: black;
    border-style: solid;
    padding:10px;    
    
    
}



#blocks{
    text-align:center;
    padding:8px;
    height: 200px;

    float:left;
    display:inline-block;
    

}




.section{
    border-width:5px;
    border-style:solid;
    border-color: black;
    
    background-color: #FFFFFF;    
    padding: 20px;
    
    box-shadow: 3px 3px rgba(0, 0, 0, .35);
    
    margin-bottom: 40px;
    
}


#points{
    margin:30px;
    
}

#desc{
    margin-top:20px;
    width:50%;
    text-align:left;
    
}

#desc:before {
    
}

#space{
    margin-top:15px;
}

#space:before {

    font-size:20px;
    content:"* * *";

    
}

#credit{
    font-size: 10px;
    text-align: right;
    margin-bottom:-15px;
    
}

#match{
    margin-top:50px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;


    
}

.button {
  background-color: #000000; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.button:hover {
  background-color: #000000; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


#comic {
    object-fit: scale-down;
}


input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;

  padding: 10px;

  color: #000;
  background: #fff;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  color: #666;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  
  margin-left:auto;
  margin-right: auto;
  max-height: 0px;
  text-align: center;
  max-width:650px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: none;
}

