* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #333;
    font-size: 11px;
    line-height: 20px;
}

h1 {
    background-image: url('/assests/onmyojibanner.png');
    background-position: center;
    height: 50px;
    text-align: center;
    align-content: center;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 0px #000, -1px 0px #000, 0px 1px #000, 0px -1px #000;
    margin-top: 10px;
}

h2 {
    background-color: #faadd1;
    text-align: center;
    color: #ffffff;
    margin: 5px 0px;
    text-transform: uppercase;
}

a {
    color: #b95d88;
    text-decoration: none;
}

a:hover {
    transition: 2s;
    color: #faadd1;
}

.fauxcode {
    background-color: #faadd1;
    padding: 2px 5px;
    color: #fff;
    border-radius: 4px;
}

main {
    background-color: #efefef;
    width: 80%;
    max-width: 700px;
    margin: 100px auto;
    padding: 5px;
    border: 1px solid #faadd1;
}

#dropdown-box {
    background-color: #d2d2d2;
    width: 100%;
    height: 100%;
    display: flex;
    border: 2px solid #faadd1;
    
}

#dropdown-text {
    flex: 1;
    padding-left: 20px;
    align-content: center;
    border-top: 3px solid #ababab;
    border-right: 3px solid #ababab;
    border-bottom: 3px solid #e9e9e9;
    border-left: 3px solid #e9e9e9;
}

/* Dropdown Button */
.dropbtn {
    background-color: #faadd1;
    text-shadow: 1px 0px #000, -1px 0px #000, 0px 1px #000, 0px -1px #000;
    color: white;
    padding: 6px;
    text-align: center;
    align-content: center;
    font-size: 10px;
    border: none;
    cursor: pointer;

}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #b95d88;
    transition: 2s;

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: fixed;
    background-color: #cecece;
    min-width: calc(80% - 10px);
    margin-left: -1.5px;
    margin-top: 24px;
    z-index: 1;
    border: 2px solid #faadd1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #faadd1
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

#credit-boxes {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:1rem;
}

.credit-box {
    display: block;
    flex: calc(50% - 0.5rem);
}
