body{
    background-color: #202529
}


/*Navigation on pc*/
.navbar-brand {
    padding: 0px;
}
.navbar-brand > img {
    padding: 7px 14px;
    border-radius: 50%;
    width: auto;
    height:  80px;
}

/*Scroll bar*/
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #404047;
}

/*Noodles pic*/
.noodles-pic{
    border-radius: 50%;
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 2s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}


/*Colors for Divs*/
.DARK{
    background-color: #202529;
}
.BLURPLE{
    background-color: #6e84d2;
}

/*Uhm idk how to categorize those*/
.section{
    padding: 3rem 1.5rem;
    display: block;
}
.profile{
    display: block;
    padding: 3rem 1.5rem;
    
}

/*Arrow*/
.info-button { 
    cursor: pointer; 
}

/*Previews*/
.previews{
    max-width: 60%; 
    margin-left: 25%;
    margin-bottom: 10px;
}
.preview {
    border-radius: 5%;
    box-shadow: 0 5px 13px -5px #000;
}


/*Phone responsivnes*/


header.nav-phone{display:none}
@media screen and (max-width: 710px) {
    .goaway{
        display: none;
    }
    .noodles-pic{
        animation: none;
    }
    .preview{
        display: none;
    }
    .navbar {
        display: none;
    }
    header.nav-pc {display:none}
    header.nav-phone{display: block}
    
    
    /* Wrapper */
    #hamnav {
        width: 30%;
        position: fixed;
        top: 0;
        z-index: 100;
    }
    
    /* Hide Hamburger */
    #hamnav label, #hamburger { display: none; }
    
    /* Horizontal Menu Items */
    #hamitems { display: flex; background: #343a40;  font-family: "Noto Sans SC", sans-serif; }
    #hamitems a {
      width: 20%; /* 100% / 5 tabs = 20% */
      padding: 10px;
      color: white;
      text-decoration: none;
      text-align: center;
    }
    #hamitems a:hover {
        color: #1eaedb
    }
    
    
      /* Show Hamburger Icon */
      #hamnav label { 
        display: inline-block; 
        color: white;
        background: #a02620;
        font-style: normal;
        font-size: 1.2em;
        padding: 10px;
      }
    
      /* Break down menu items into vertical */
      #hamitems a {
        box-sizing: border-box;
        display: block;
        width: 100%;
        border-top: 1px solid #333;
      }
    
      /* Toggle Show/Hide Menu */
      #hamitems { display: none; }
      #hamnav input:checked ~ #hamitems { display: block; }

}