/* Font */
    @font-face {
        font-family: 'San Francisco Pro';
        src: local('San Francisco Pro Display Light'), local('San-Francisco-Pro-Display-Light'),
            url('../fonts/SFProDisplay-Light.woff2') format('woff2'),
            url('../fonts/SFProDisplay-Light.woff') format('woff'),
            url('../fonts/SFProDisplay-Light.ttf') format('truetype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'San Francisco Pro';
        src: local('San Francisco Pro Display Light Italic'), local('San-Francisco-Pro-Display-Light-Italic'),
            url('../fonts/SFProDisplay-LightItalic.woff2') format('woff2'),
            url('../fonts/SFProDisplay-LightItalic.woff') format('woff'),
            url('../fonts/SFProDisplay-LightItalic.ttf') format('truetype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'San Francisco Pro';
        src: local('San Francisco Pro Display Thin'), local('San-Francisco-Pro-Display-Thin'),
            url('../fonts/SFProDisplay-Thin.woff2') format('woff2'),
            url('../fonts/SFProDisplay-Thin.woff') format('woff'),
            url('../fonts/SFProDisplay-Thin.ttf') format('truetype');
        font-weight: 100;
        font-style: normal;
    }

    @font-face {
        font-family: 'San Francisco Pro';
        src: local('San Francisco Pro Display Ultra Light'), local('San-Francisco-Pro-Display-Ultra-Light'),
            url('../fonts/SFProDisplay-Ultralight.woff2') format('woff2'),
            url('../fonts/SFProDisplay-Ultralight.woff') format('woff'),
            url('../fonts/SFProDisplay-Ultralight.ttf') format('truetype');
        font-weight: 200;
        font-style: normal;
    }

    @font-face {
        font-family: 'Inconsolata';
        src: url('../fonts/RobotoMono-VariableFont_wght.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
    }

    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #E5E5E5 inset;
    }


/* HTML */
    html {
        width:100vw;
        overflow-x:hidden;
    }

/* Body */
    body {
        font-family: 'San Francisco Pro';
        background-color: rgb(225, 225, 225);
        letter-spacing: 0.1px;
        line-height: 120%
    }

    a.a_text {
        text-decoration: none;
        color: rgb(0, 0, 0);
    }

    a.a_text:hover{
        color: rgb(130, 130, 130);
    }

    /* Container */
        .container {
            width: 1200px;
            background-color: rgb(250, 250, 250);
            margin: 0 auto;
            box-shadow: 0 0 8px rgba(0,0,0,0.1);
        }

        /* Header */
            .header {
                width: 1200px;
                height: 50px;
                background-color: rgb(70, 70, 70);
                display: flex;
                align-items: center;
            }

            /* Logo */
                .logo {
                    margin-left: 30px;
                    /* width: 200px; */
                    /* height: 50px; */
                    font-weight: 100;
                    width: 15%;
                    /* align-items: center; */
                    /* justify-content: center; */
                    /* justify-content: space-around; */
                    font-size: 200%;
                }

                a.a_logo {
                    text-decoration: none;
                    color: rgb(248, 248, 248);
                }
            
            /* Menu */

                .menu {
                    margin-right: 30px;
                    color: rgb(100, 100, 100);
                    width: 85%;
                    text-align: right;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                }

                .username {
                    text-decoration: none;
                    color: rgb(248, 248, 248);
                }

                .auth_button {
                    text-decoration: none;
                    color: rgb(248, 248, 248);
                    margin-left: 20px;
                }

                .auth_err_text {
                    color: #ff5050;
                }

                .exit_auth_button {
                    cursor: pointer;
                    margin-left: 20px;
                    padding: 0px;
                    background-color: transparent;
                    border: none;
                    color: rgb(248, 248, 248);
                    font-family: 'San Francisco Pro';
                    font-size: 100%;
                }

                /* Auth popup */

                    .popup {
                        display: none;
                        width: 100%;
                        height: 100%;
                        position: fixed;
                        left: 0;
                        top: 0;
                        background-color: rgba(0, 0, 0, .8);
                        z-index: 2;
                    }
        
                    .popup.active {
                        display: block;
                    }
        
                    .popup_container {
                        display: flex;
                        width: 100%;
                        height: 100%;
                    }
        
                    .popup_body {
                        margin: auto;
                        width: 500px;
                        background-color: #fff;
                        border-radius: 10px;
                        text-align: center;
                        padding: 70px 15px 80px 15px;
                        position: relative;
                    }
        
                    .popup_body p {
                        margin-bottom: 50px;
                        font-size: 140%;
                    }
        
                    .popup_body input {
                        display: block;
                        margin: 25px auto 0px auto;
                        padding: 17px 20px;
                        width: 330px;
                        background-color: #E5E5E5;
                        border-radius: 5px;
                        border: none;
                        color: #363636;
                        font-family: 'San Francisco Pro';
                        font-size: 100%;
                        letter-spacing: 0.1px;
                        box-sizing: border-box;
                    }
        
                    .popup_body input:focus {
                        outline: none;
                    }
        
                    .popup_body button {
                        cursor: pointer;
                        display: block;
                        width: 330px;
                        margin: 100px auto 0px auto;
                        padding: 13px 60px;
                        border: none;
                        color: #fff;
                        border-radius: 5px;
                        background-color: #767676;
                        font-family: 'San Francisco Pro';
                        font-size: 120%;
                        letter-spacing: 0.1px;
                        box-sizing: border-box;
                    }
        
                    .close_popup {
                        position: absolute;
                        top: 12px;
                        right: 15px;
                        cursor: pointer;
                    }

        /* Content */
            .content {
                min-height: calc(100vh - 308px);
            }

            .alphabet {
                margin-top: 7px;
                display: flex;
                justify-content: center;
                letter-spacing: 5px;
            }

            .mainsong {
                margin-top: 40px;
                display: flex;
                justify-content: center;
            }

                .songtitle{
                    margin-top: 50px;
                    margin-left: 80px;
                    font-size: 130%;
                }

                .artistname{
                    margin-top: 50px;
                    margin-left: 80px;
                    font-size: 130%;
                }

                .songlist{
                    margin-top: 35px;
                    margin-left: 50px;
                    margin-right: 50px;
                    line-height: 200%
                }

                .list {
                    margin-top: 20px;
                    margin-left: 20px;
                    margin-right: 20px;
                    display: flex;
                    justify-content: space-around;
                    text-align: center;
                }

                    .lastadded {
                        width: 33%;
                    }

                        .lalist {
                            margin-top: 10px;
                            text-align: left;
                        }

                    .topartists {
                        width: 33%;
                    }

                    .topchords {
                        width: 33%;
                    }
                
                .songchordbar {
                    margin-top: 35px;
                    margin-left: 20px;
                    margin-right: 20px;
                    display: flex;
                    justify-content: space-around;
                    text-align: center;
                }

                    .songbar {
                        width: 58%;
                    }

                        .songtext {
                            font-family: 'Inconsolata';
                            letter-spacing: 0px;
                            font-size: 85%;
                            text-align: left;
                            display: flex;
                            justify-content: space-around;
                        }

                    .chordbar {
                        width: 38%;
                    }

                .add_song {
                    margin-top: 35px;
                    margin-left: 50px;
                    margin-right: 50px;
                }

                .add_song input:focus {
                    outline: none;
                }

                .add_song select:focus {
                    outline: none;
                }

                .add_song textarea:focus {
                    outline: none;
                }

                .add_song p {
                    margin-top: 20px;
                    margin-bottom: 5px;
                }

                .add_song_title {
                    padding: 5px 5px;
                    width: 300px;
                    border-radius: 5px;
                    border-width: 1px;
                    font-family: 'San Francisco Pro';
                    font-size: 100%;
                    letter-spacing: 0.1px;
                    box-sizing: border-box;
                }
                
                .add_song_text {
                    padding: 5px 5px;
                    width: 700px;
                    height: 1000px;
                    border-radius: 5px;
                    font-family: 'Inconsolata';
                    letter-spacing: 0px;
                    font-size: 85%;
                    box-sizing: border-box;
                }
                
                .add_song_button {
                    cursor: pointer;
                    width: 300px;
                    margin-top: 20px;
                    padding: 10px 10px;
                    border: none;
                    color: #fff;
                    border-radius: 5px;
                    background-color: #9b9b9b;
                    font-family: 'San Francisco Pro';
                    font-size: 100%;
                    letter-spacing: 0.1px;
                }

                .title {
                    margin-top: 50px;
                    margin-left: 80px;
                    margin-bottom: 30px;
                    font-size: 130%;
                }

        .tclist {
            margin-top: 10px;
            text-align: left;
        }

        /* Footer */
            .footer {
                margin-top: 200px;
                background-color: rgb(230, 230, 230);
                color: rgb(180, 180, 180);
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            .footer p {
                margin-right: 20px;
            }
