@font-face {
    font-family: "Sour Gummy";
    src: url(/fonts/SourGummy-VariableFont_wdth\,wght.ttf) format("truetype");
}

@font-face {
    font-family: "Jacquard";
    src: url(/fonts/Jacquard12-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Rubik";
    src: url(/fonts/RubikSprayPaint-Regular.ttf) format("truetype");
}

:root {
    --logo-image-plain: url("../img/logo1-noSubtext.png");
    --logo-image-style: url("../img/logo.png");
    --logo-image-code: url("../img/logocode.png");
    --header-image: var(--logo-image-code);
    --body-bg-image: url("../img/blinky.gif");
    --bgcolor: #bdede0;
    --bggradient: linear-gradient(
        90deg,
        rgba(189, 237, 224, 1) 0%,
        rgba(111, 88, 201, 1) 100%
    );
    --content: #d6d8d6;
    --links: #c6a8c6;
    --primarycolor: #7e78d2;
    --secondarycolor: #6f58c9;
    --headertext: #f1f1f9;
    --width-aside: 250px;
}

body {
    margin: 0;
    background: var(--bgcolor);
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 150px;
    color: var(--content);
    background-image: var(--body-bg-image);
    font-family: "Sour Gummy", sans-serif;
}

* {
    box-sizing: border-box;
}

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
#container {
    max-width: 1200px;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom and
    change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
    padding: 0 5px;
}
/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
    color: var(--links);
    font-weight: bold;
    /* if you want to remove the underline
    you can add a line below here that says:
      text-decoration:none; */
}

#header {
    position: relative;
    width: 100%;
    background-color: #181818;
    height: 150px;
    margin: 10px 0 0 0;
}

#header-image-container {
    height: 100%;
    padding: 0.6rem;
}

#header-image-container img {
    max-height: 100%;
    content: var(--header-image);
    display: block;
    margin: auto;
}

/* navigation section!! */
#navbar {
    height: 4rem;
    background-color: var(--primarycolor);
    border: 1px black solid;
    width: 100%;
    font-size: 2rem;
    font-family: "Rubrik";
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding: 0.7rem 1.2rem;
    background-color: rgba(40, 0, 80, 0.3);
}

/* navigation links*/
#navbar li a {
    color: var(--headertext);
    /* navbar text color */
    text-decoration: none;
}

#flex {
    display: flex;
    margin: 5px 0;
}
#flex main,
aside {
    border: 1px black solid;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    background-color: #241445;
    min-width: var(--width-aside);
    max-width: var(--width-aside);
    font-size: 15;
    position: relative;
    padding-bottom: 40px;
    /* this makes the sidebar text slightly smaller */
}

/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #43256e;
    flex: 0;
    order: 2;
    margin: 0 5px;
    min-width: calc(100% - var(--width-aside) * 2 - 10px);
    max-width: calc(100% - var(--width-aside) * 2 - 10px);
}

.content {
    padding: 0 10px;
}

button {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-bottom: 15px;
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

footer {
    background-color: #13092d;
    /* background color for footer */
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1,
h2,
h3 {
    color: var(--content);
    font-family: "Sour Gummy";
}

h1 {
    font-size: 25px;
}

strong {
    /* this styles bold text */
    color: var(--content);
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #13092d;
    border: 1px solid #ed64f5;
    padding: 10px;
}

.indent {
    width: 100%;
    list-style-type: none;
    list-style-position: unset;
}

.indent li a {
    width: 100%;
    margin: 0;
}

#skills {
    display: grid;
    width: 100%;
    gap: 10px;
    grid-template-columns: 33% 33% 33%;
    padding: 10px;
}

.skill {
    min-height: 300px;
    background: var(--primarycolor);
    border: 5px solid rgba(111, 88, 201, 1);
    border-radius: 30px;
}

.skill img {
    height: 200px;
    width: 100%;
    border-radius: 25px 25px 5px 5px;
}

.skillName {
    font-family: "Sour Gummy";
    font-size: 30px;
}

.skill button {
    background: var(--links);
    border-radius: 5px 5px 25px 25px;
    color: var(--secondarycolor);
    font-family: "Jacquard";
    font-size: 30px;
}
/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    font-size: smaller;
    background-color: #13092d;
}

.title {
    padding: 1px 0 0;
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--secondarycolor);
    text-align: center;
    min-height: 70px;
}

@media only screen and (max-width: 1000px) and (orientation: portrait) {
    #header-image-container img {
        height: 70%;
    }

    #flex {
        flex-wrap: wrap;
    }

    aside {
        min-width: 100%;
        margin: 10px 0 0 0;
    }

    /* the order of the items is adjusted here for responsiveness!
    since the sidebars would be too small on a mobile device.
    feel free to play around with the order!
    */
    main {
        order: 1;
        margin: 0;
        min-width: calc(100%);
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar {
        height: 100%;
        padding: 5px 0;
    }

    #navbar ul {
        flex-wrap: wrap;
        font-size: 1.7srem;
        margin: 0% 10px;
        text-align: center;
    }
    #navbar ul li {
        border-radius: 15px;
    }
    #skills {
        grid-template-columns: 50% 50%;
    }

    footer#footer {
        height: 250px;
    }
}

.contentImg {
    display: inline-block;
    max-width: 80%;
}

.deadlink {
    text-decoration: line-through var(--content) 1px;
}

li {
    margin-top: 3px;
}

#oneko-bed {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    bottom: 0;
}

strong,
i {
    padding: 0 !important;
}

ul {
    list-style-type: disc;
    padding-left: 10px;
}

.footnote {
    position: absolute;
    bottom: 5px;
    padding-left: 10px;
}

.side-cal-date {
    font-size: larger;
}

.side-cal-event {
    padding-bottom: 0.5em;
}

.side-cal-event h3 {
    color: #fff;
    font-weight: 600;
    font-size: medium;
    padding: 0;
    margin: 0;
}

.side-cal-event p {
    font-size: small;
    padding: 0;
    margin: 0;
}

.side-cal-more {
    font-weight: 600;
    font-size: medium;
    padding-left: 0.75em;
}

.badge-parent {
    width: 400px;
    height: 120px;
    position: relative;
}
.badge-left {
    top: 10px;
    left: 20px;
    position: absolute;
}
.badge-right {
    top: 30px;
    left: 140px;
    position: absolute;
}
footer {
    height: 140px;
}
