@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Source+Code+Pro:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&family=Style+Script&display=swap');

:root {
    --dark: #293241;
    --lighter-gray: #E0FBFC;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;

    background-color: var(--dark);
    color: var(--lighter-gray);

    /* font-size: 10px; */
    font-family: 'Roboto', sans-serif;
    
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    height: 100vh;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}




.tag {
    scroll-margin-top: 10rem;
}




.outline {
    text-align: justify;
}

.italic {
    font-style: italic;
}

#back-arrow {
    margin-top: 20px;
    cursor: pointer;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cards > .card p, .panels > .panel p {
    font-size: 1rem;
    text-align: justify;
}

.panels {
    display: none;
    position: relative;
}

.panels > .panel {
    display: none;
}






.container {
    padding-bottom: 10ch;
}

.center {
    text-align: center;
}

.image-block > div.image > img {
    width: 100%;
    border-radius: 30px;
}

.nav > ul > li > a {
    height: 100%;
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}




footer {
    background-color: #181818;

    z-index: 1;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-top: auto;
    padding-right: 1ch;
}

footer a {
    text-decoration: none;
    color: inherit;
}





.title {
    font-family: 'Style Script';
    margin-top: 0;
    font-weight: 200;
}

.title.s {
    font-size: 2rem;
}
.title.m {
    font-size: 3rem;
}
.title.l {
    font-size: 3.75rem;
}
.title.xl {
    font-size: 4.5rem;
}

.page-header {
    font-family: "Roboto", sans-serif;
    font-size: 4rem;
}





ul {
    font-size: 1.3rem;
    list-style: none;
}

p {
    font-size: 1.3rem;
}

a {
    color: #98C1D9;
    text-decoration: none;
    cursor: pointer;
}