body {
    /* Ensure we know the size of an em */
    font-size: 16px;
}

.topnav {
    overflow: hidden;
    background-color: darkred;
    border-radius: 10px;
}

.topnav a {
    font-family: 'Courier New', Courier, monospace;
    float: left;
    width: 100px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.topnav a:hover {
    background-color: #797979;
    color: white;
}

.topnav a.active {
    background-color: black;
    color: white;
}

#main-img {
    width: 25%;
    margin-left: 6em;
    margin-bottom: 2em;
}

p.logo {
    text-align: center;
    font-family: 'Teko', 'Courier New', Courier, monospace;
    font-size: xxx-large;
    font-style: italic;
    margin-top: 0.5em;
    margin-bottom: 0;
}

.outlined-text {
  color: black;
  text-shadow:
    -1px -1px 0 #c0c0c0,
    1px -1px 0 #c0c0c0,
    -1px 1px 0 #c0c0c0,
    1px 1px 0 #c0c0c0;
}

.logo_llc {
    font-size: large;
}

h1 {
    font-size: xx-large;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-align: center;
    margin-top: 1.25em;
    margin-bottom: 3em;
}

body {
    background-color: lightyellow;
}

.form {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: x-large;
    font-weight: bold;
}

.container {
    position: relative;
    text-align: center;
    color: black;
}

.centered {
    text-align: center;
}

.button {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 2em;
    background-color: darkred;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    color: white;
    box-shadow: 0 .5em .5em 0 gray;
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 10px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#box {
    margin: auto;
    background-color: lightyellow;
    text-align: center;
    width: 50%;
    height: auto;
    padding: 20px;
    border: 10px solid darkred;
    border-radius: 40px;
}

h3 {
    font-family: 'Courier New', Courier, monospace;
    color: black;
    font-size: x-large;
    font-weight: bold;
    font-style: italic;
}

p {
    font-family: 'Courier New', Courier, monospace;
    text-align: justify;
    font-size: larger;
    color: black;
    font-weight: bold;
}

.main-intro {
    max-width: 60%;
    /* Center */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#main-toasts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    max-width: 65em;


    /* Center */
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 2em;
}

/* Toast header */
.main-toast > h3 {
    overflow: hidden;
    margin: 0;
    padding: 0.5em;

    color: white;
    background-color: darkred;
    border-radius: 10px;

    text-align: center;
    font-weight: bold;
    font-size: x-large;
    font-style: normal;
}

/* Toast body */
.main-toast > p {
    text-align: justify;
    font-weight: normal;
    margin-top: 1em;
    margin-bottom: 0;
}

footer {
    margin-top: 2em;
}
