/****************************/
/*** Universal Properties ***/
/****************************/

body {
    color: white;
    font-family: garamond;
    font-size: 16px;
    background-color: #140415;
    
    margin: 0;
    padding: 0;
}

p {
    margin-left: 1em;
    margin-right: 1em; 
}

a:link {color: #F9E6FA;}
a:visited {color: #FFED8A;}
a:active {color: #FFEB6B;}

button {
  background-color: #140415;
  color: #F9E6FA;
  font-family: garamond;
  font-size: 18px;
  border: 2px outset #555555;
  
  width: 95%;
  margin-top: 3px;
  margin-bottom: 3px; 
}

button:active {
  border: 2px inset #555555;
}

.collapsible {
  
}

/****************************/
/*********** Divs ***********/
/****************************/

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
}

.column {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    row-gap: 25px;
}

.content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 80vw;
    text-align: center;
    column-gap: 25px;
    row-gap: 25px;
    padding-bottom: 25px;
}

.contentSkinny {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 50vw;
    text-align: center;
    column-gap: 25px;
    row-gap: 25px;
    padding-bottom: 25px;
}

.container {
    box-sizing: border-box;
    flex: 1 1 auto;
}

.background {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.black {
    background-color: rgb(0, 0, 0, 0.80);
}

.outlineTest {
    outline: 1px solid magenta;
}

.outlineTest2 {
    outline: 1px solid green;
}

.outlineTest3 {
    outline: 1px solid orange;
}

.mainTitle {
    color: #FFEB6B;
    background-color: #140415;
    font-size: 35px;
    text-align: center;
    height: 60px;
    align-content: center;
    border-bottom: 2px solid #FFEB6B;
}

.title {
    color: #FFEB6B;
    background-color: #140415;
    text-align: center;
    align-content: center;
    font-size: 20px;
    border-top: 2px solid black;
    border-left: 2px solid black;
    border-right: 2px solid black;
    border-bottom: 2px solid #FFEB6B;
    margin-bottom: 5px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.leftAlign {
    text-indent: 1em;
    text-align: left;
    margin-left: 1em;
    margin-right: 1em;
}

.leftAlignYellow {
    color: #FFEB6B;
    font-size: 24px;
    text-indent: 1em;
    text-align: left;
    margin-left: 1em;
    margin-right: 1em;
    border-bottom: 2px solid #FFEB6B;
    padding-bottom: 5px;
}

.centerAlign {
    text-indent: 0em;
    text-align: center;
    margin-left: 1em;
    margin-right: 1em;
}

.centerAlignSkinny {
    text-indent: 0em;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.centerAlignYellow {
    color: #FFEB6B;
    font-size: 24px;
    text-indent: 0em;
    text-align: center;
    margin-left: 1em;
    margin-right: 1em;
    border-bottom: 2px solid #FFEB6B;
    padding-bottom: 5px;
}

.backLink {
    text-indent: 0em;
    text-align: right;
    margin-left: 1em;
    margin-right: 1em;
}

.blinkie {
    width: 150px;
    height: 20px;
    padding: 2px; 
}

@media only screen and (max-width: 600px) {
    #mobileFix {
      max-width: 95vw;}
    #mobileImageFix {
      max-width: 85vw;}
    #mobileTextFix {
      width: 75%;}
} 