@import url("https://font");



*{
    margin:10;
    padding:10;
}
:root{
    background-color: black;
    color: white;
    --theme:"black";
}
body{
    /* background-image: url("assets/firestorm.jpeg");
    /* Image Sourced from Wikipedia - Yellowstone Digital Slide Files
    taken by Jim Peaco(1988)
     No protection is claimed in original U.S. Government works */
    background-color:var(--primary-color);
    color:white;
    font-family: Arial, Helvetica, sans-serif;
}
.h1{ 
    text-align: center;
}
.h2{
    text-align: center;
    color: white;
}
.h2:visited{
    text-align: center;
    color:rgb(71,159,248);
}
.h2:hover{
    text-align: center;
    color:rgb(71,159,248);
}

/* button designs from purecss.io  */
.button-green,
.button-red,
.button-orange,
.button-theme,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-green {
    background: rgb(28, 184, 65);
    /* this is a green */
}

.button-red {
    background: rgb(202, 60, 60);
    /* this is the orange */
}

.button-warning {
    background: rgb(223, 117, 20);
    /* this is an orange */
}

.button-secondary {
    background: rgb(66, 184, 221);
    /* this is a light blue */
}
.button-theme{
    background-color: var(--theme);

}