body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    background-color: #283B54;
    color: #DFE0E2;
    margin: 0;
    padding-bottom: 100px;
}

a {
    color: #DFE0E2;
}

main {
    margin: 15px 25px;
}

h1{font-size: xxx-large; margin-bottom: 25px;}
p{font-size: 22px;}

footer {
    position: fixed;
    bottom: 10px;
    background-color: #DFE0E2;
    width: 100%;
    display: block;
    margin-bottom: -10px;
}

footer #music-links {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
}

footer #music-links a {
    font-size: larger;
    transition: 0.1s;
    text-decoration: none;
    color: #283B54;
    padding: 8pt 8pt;
}

footer #music-links a:hover {
    background-color: #b5b6b9;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #3F608F;
}
.nav-links .first, .nav-links .second {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.nav-links .second {
}

header .main {
    display: flex;
    background-color: #091320;
    padding: 15pt;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.000, 1.010, 0.080, 1.010);
}

header .main .home-link {
    letter-spacing: normal;
    font-weight: bold;
    transition: 0.3s cubic-bezier(0.000, 1.010, 0.080, 1.010);
    color: #DFE0E2;
    text-shadow: 0pt 5pt 8pt rgba(0, 0, 0, 0.5);
    text-decoration: none;
    margin-right: 40px;
}

header .main:hover {
    background-color: #3F608F;
}

header .splash-text {
    font-size: 18px;
    color: #dfe0e280;
    text-align: right;
    margin: 0px 0px 0px auto;
    padding: 0px;
    align-self: center;
}

@media screen and (min-width: 781px) {
    header .main .splash-text {
        display: block;
    }
}

@media screen and (max-width: 780px) {
    header .main .splash-text {
        display: none;
    }
}

@media screen and (min-width: 551px) {
    header .main .home-link {
        font-size: 40pt;
        text-align: left;
    }
}

@media screen and (max-width: 550px) {
    header .main .home-link {
        font-size: 11.5vw;
        text-align: center;
    }
}

header .nav-links a {
    color: #DFE0E2;
    font-size: 20px;
    padding: 15px 20px;
    text-decoration: none;
}

header .nav-links a:hover {
    background-color: #283B54;
}

.big-link {
    font-size: 24px;
    font-weight: bold;
    color: #DFE0E2;
}

dialog{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

dialog div{
    background-color: #3F608F;
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    max-width: 40%;
    height: fit-content;
    padding:27px 30px;
    color: #DFE0E2;
    font-size: 18px;
    border-radius: 30px;
}

dialog h1, 
dialog h2,
dialog a {
    text-align: center;
    font-size: xx-large;
    font-weight: bold;
    margin-top: 50px;
}

dialog .close{
    text-align: center;
    font-size:x-large;
    font-weight: bold;
    color: #283B54;
    margin-top: 0;
    margin-bottom: 0;
}

button, .button, .error {
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
button, .button {
    background-color: #DFE0E2;
    color: #283B54;
    cursor: pointer;
    transition: background-color 0.05s, color 0.3s;
}
button:hover, .button:hover {
    background-color: #ffffff;
    color: #3572c1;
}

.error {
    color: #ff0000;
    background-color: #ffcccc;
}