*, *::before, *::after { box-sizing: border-box; }
html { 
    height: 100%;
}

body {
    color: white;
    background-color: #16182c;
    margin: 0px;
    height: 100%
}

#header {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 24px;
}

#header img {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section#audiobench {
    background-color: #FFFFFF10;
}

.section#podcast-studio {
    background-color: #cc00ff20;
}

.section#about {
    background-color: #00ccff20;
}

.section img {
    width: 128px;
    padding: 40px 0px 20px;
}

.section #copy {
    padding: 0px 0px 64px 0px;
}

h1 {
    font-family: "Fredoka", sans-serif;
    font-size: 64px;
    font-weight: 400;
    margin: 0px;
}

h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0px;
    color: #FFFFFF7F
}

.section p {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    max-width: 640px;
    padding: 20px 0px 40px 0px;
}

.section a {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    padding: 20px 44px;
    border-radius: 12px;
    background-color: #FFFFFFAA;
}

.section a:hover {
    background-color: #DDDDDD;
}

.section a:focus {
    outline: 3px solid #DE8c18;
    outline-offset: 2px;
}

#footer {
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    padding: 20px;
}