* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Quicksand;
    src: url('../fonts/Quicksand-VariableFont_wght.woff2') format('woff2');
}

:root {
    --default-text: #FFF;
    --footer-link: #428BCA;
    --footer-bg: #F8f9FA;
    --deep-blue: #191970;
    --mid-blue: #729FCF;
    --faded-blue: #6C8498;
    --deep-purple: #4E0946;
    --mid-purple: #428BCA;
    --deep-green: #225B00;
}

body {
    font-family: Quicksand, Arial, sans-serif;
    line-height: 1.4;
    font-size: 1.2rem;
    color: var(--default-text);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    max-height: calc(100vh - 75px);
    overflow: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

p {
    margin-bottom: 10px;
}

blockquote {
    margin-left: 30px;
    font-family: arial, sans-serif;
}

strong {
    font-size: 110%;
}


.gradient-bg {
    min-height: 100vh;
    padding: 20px;
}

.gradient-bg a,
.gradient-bg a:visited {
    color: var(--default-text);
}

.toggle-bar {
    width: 100%;
    text-align: center;
    font-size: 80%;
    margin-bottom: 20px;
}

#header {
    width: 100%;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#header a {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    text-decoration: none;
}

#menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.product-name {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

footer {
    position: fixed;
    bottom: 0;
    height: 70px;
    width: 100%;
    background-color: var(--footer-bg);
    padding: 10px 0;
    text-align: center;
    color: var(--deep-blue);
    line-height: 0.8;
    font-size: 0.8rem;
}

footer a,
footer a:visited {
    color: var(--footer-link);
}
