* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
  }
header {
    background: rgba(252, 30, 30, 0.534);
    height: 100px;
  }
h1 {
    text-align: center;
    color: white;
    line-height: 100px;
    margin: 0;
  }
h2 {
    font-size: 30px;
    text-align: center;
  }
section {
    zoom: 1;
  }
article {
    padding: 10px;
    margin: 10px;
    background: rgba(0, 60, 255, 0.726);
  }
button {
    cursor: pointer;
    text-align: center;
    align-self: center;
    border: 3px solid #0099ff;
    background-color: transparent;
    height: 85px;
    width: 200px;
    color: #0099ff;
    font-weight: bolder;
    font-size: 2em;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}

button:hover {
    background-color: black;
    color: white;
}

section {
    display: flex;
    flex-direction: column;
}

#bolden {
    font-weight: bolder;
    font-size: 18px;
    text-align: center;
}

#currTheme, #savedTheme {
    font-weight: bolder;
    font-size: 18px;
    text-align: center;
}