

/* Colour palette 
Primary: #232931;
Secondary: #393e46;
Text: #EEEEEE;
Blue: #69779b;
Purple: #543864;
Green: #4ecca3;
Orange: #ff6363;
Yellow: #ffbd69;
*/

html, body {
    height: 100%;
    margin: 0px;
    color: #EEEEEE;
    font-family: sans-serif;
}

head {
    height: 50px;
}

nav {
    display: flex;
    position: fixed;
    background-color: #404b69;
    height: fit-content;
    background-color: transparent;
    width: 100%;
    padding: 2vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px;
    border-bottom: groove 1px #69779b;
}

section {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-inline: 20px;
    display: flex;
    height: calc(100% - 80px);
    justify-content: center;
    align-items: center;
    
}

footer {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    width: 100%;
    bottom: 0px;
    border-top: ridge 0.5px #1a1a2e;
    background-color: transparent;
    height: 30px;
    padding-inline-end: 1em;
    font-size: x-small;
}

footer div {
    padding: 10px;
}

a {
    color: #eeeeee;
    text-decoration: none;
    transition: all 0.4s;
}

a:hover {
    color: #ff6363;
}

ul {
    list-style-type: none;
    padding: 0px;
}

ul a{ 
    color: #4ecca3;
}

.hidden {
    display: none;
    /* visibility: hidden; */

}

#home {
    background-color: #232931;
}
#about {
    background-color: #393e46;
}
#projects {
    background-color: #232931;
}
#other {
    background-color: #393e46;
}

.active-section {
    display: block;
    /* background-color: #232931; */
    
}

.active {
    color: #ffbd69;
}

.nav-title {
    padding: 10px;
    margin: 0px;
}

.nav-select-container {
    width: inherit;
    display: flex;
    padding: 10px;
    justify-content: center;
}

.nav-select {
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: all 0.5s;

}

.nav-select a {
    color: #cccccc;
    text-decoration: none;
}

img:hover {
    opacity: 0.8;
}


.transparent {
    background-color: transparent;
    color: transparent;
}

.section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section-container div h1 {
    text-align: center;
}

.content {
    display: flex;
    justify-content: center;
}

.content div {
    justify-content: center;
    padding-right: 1vw;
}


#spotify-playlist {
	width: auto;
	height: 30vh;
}




.visible {
    visibility: visible;
    transition: 1s;
}

.invisibile {
    visibility: hidden;
    transition: 1s;
}

.no-select {
    user-select: none;
}


@media only screen and (max-width: 600px) {
    .content {
        flex-direction: column;
    }
    .scroll-list {
        overflow-y: auto;
        height: 10vh;
        border-top: groove 1px #543864;
    }
    .scroll-list ul {
        margin: 5px;
    }
  }
