@import url('switzer.css');

:root {
    --menu-count: 5;
}

body{
    font-family: Switzer-Regular;
    font-size: 16px;
    background-color: rgb(170, 234, 238);
}

main {
    padding: 60px;
}

P {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: Switzer-Extrabold;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 51px;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 39px;
    line-height: 1.55;
    letter-spacing: 0.02em;
} 

h3 {
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 0.025em;
}
    
h4 {
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0.025em;
}

h5 {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

h6 {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

/*** Images ***/

.shortRound {
    border-radius: 25%;
}

.bigRound {
    border-radius: 35%;
}

/*** Nav Bar & Flex for Mobile Nav Bar ***/

.mobile-menu-btn {
    display: none;
}

.header-main {
    width: 100%;
    padding: 0 60px;
    height: 0 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 100;
}

.header-main nav {
    display: flex;
}

.header-main .logo {
    height: 40px;
    width: fit-content;
    align-self: center;
    cursor: pointer;
}

.header-main .logo img {
    height: 100%;
}

.header-main ul {
    height: 100%;
    padding-left: 40px;
    list-style: none;
    display: flex;
    align-self: baseline;
    font-size: 0px;
}

.header-main ul li a {
    display: block;
    padding: 0px 10px;
    margin: 0%;
    height: 100%;
    line-height: 60px;
    font-size: 16px;
    font-family: Switzer-Extrabold;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease-in-out 100ms;
}

.header-main ul li a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

@media only screen and (max-width: 600px) {
   
    .header-main {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        width: 60px;
        height: 60px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 200;
        background-color: #ffffff;
    }

    .mobile-menu-btn img {
        height: 80%;
        align-self: center;
    }

    .header-main {
        height: 100vh;
        flex-wrap: wrap;
        flex-direction: column;
        padding: 0;
        justify-content: flex-start;
    }

    .header-main nav {
        width: 100%;
        height: 80vh;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: stretch;
    }

    .header-main .logo {
        height: 30%;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .header-main .logo img {
        height: 60%;
        align-self: center;
    }

    .header-main ul {
        height: 70%;
        width: 100%;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: space-between;
    }

    .header-main ul li {
        width: 100%;
        height: cal(100% / var(--menu-count));
        padding: 0;
        margin: 0;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        transition: all ease-in-out 100ms;
    }

    .header-main ul li:nth-last-child(1) {
        border-bottom: 1px solid #ddd;
    }

    .header-main ul li a {
        width: 100%;
        height: fit-content;
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 2.5rem;
    }

    .header-main ul li a:hover {
        background-color: transparent;
        color: #111;
    }

    .header-main nav {
        overflow-y: scroll;
        overflow-x: hidden;
    }

}

/*** Music Page Column Boxes ***/

.row {
    overflow: hidden;
}

.col {
    width: 350px;
    height: 470px;
    display: inline-block;
    margin: 5px 2px auto;
    vertical-align: top;
}

.smallcolumn {
    width: 350px;
    height: 150px;
    display: inline-block;
    margin: 5px 2px auto;
    vertical-align: top;
}

div li {
    text-align: left;
}
}