/*settings for mobile as default */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    color: white;
    font-family: 'Kode Mono';
    overflow-y: hidden;
}

body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: 1;
    background-image: url('../imgs/xvi_lightburst.jpg');
    background-size: cover;
    background-color: white;
}

.header {
    text-align: center;
}

.nav_icon {
    position:absolute;
    left: 0%;
    top: 0%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

.checkbullets {
    list-style-image: url("../imgs/icons/to-do_box.svg");
    padding-left: 25px;
}

.checked {
    list-style-image: url("../imgs/icons/to-do_checkbox.svg");
    padding-left: 25px;
}

#all_txt {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.parallax {
    /* The image used */
    background-image: url('../imgs/xvi_lightburst.jpg');

    /* Full height */
    height: 100%;
    width: 100%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#theme_tag {
    float: right;
    margin: 0;
}

#music_week {
    float: right;
    margin: 0;
    width: 300px;
    height: 150px;
}

#sptfy_link {
    width: auto;
    height: 200px;
}

#todo-list {
    height: 250px;
    width: 75%;
    overflow-y: scroll;
    scrollbar-width: thin;
}

#moon_phases {
    float: right;
}

.scroller::-webkit-scrollbar {
    width: 12px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

/*menu links */
.sidenav a,
.dropdown-btn {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    text-align: left;
}

.dropdown-btn {
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    outline: none;
}

.sidenav a:hover,
.dropdown-btn:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
    color: white;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
    height: 55%;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/* responsive parts */
.row {
    text-align: center;
    height: 100%;
    margin: 0 auto;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 600px) {

    /* For tablets: */

    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {

    /* For desktop: */
    [class*="col-"] {
        width: 100%;
        border-bottom: 0;
    }

    .col-1 {
        width: 8.33%;
    }

    .col-2 {
        width: 16.66%;
    }

    .col-3 {
        width: 25%;
        height: 100%;
    }

    .col-3.left {
        margin-right: 0px;
    }

    .col-3.right {
        margin-left: 0px;
        height: 100%;
    }

    .col-4 {
        width: 33.33%;
    }

    .col-5 {
        width: 41.66%;
    }

    .col-6 {
        width: 50%;
        height: 100%;
    }

    .col-7 {
        width: 58.33%;
    }

    .col-8 {
        width: 66.66%;
    }

    .col-9 {
        width: 75%;
    }

    .col-10 {
        width: 83.33%;
    }

    .col-11 {
        width: 91.66%;
    }

    .col-12 {
        width: 100%;
    }
}