@font-face {
    font-family: Quicksand-Regular;
    src: url(../fonts/quicksand/Quicksand-Regular.ttf);
}

@font-face {
    font-family: Quicksand-Bold;
    src: url(../fonts/quicksand/Quicksand-Bold.ttf);
}

@font-face {
    font-family: Quicksand-Light;
    src: url(../fonts/quicksand/Quicksand-Light.ttf);
}

@font-face {
    font-family: Quicksand-SemiBold;
    src: url(../fonts/quicksand/Quicksand-SemiBold.ttf);
}

@font-face {
    font-family: Quicksand-Medium;
    src: url(../fonts/quicksand/Quicksand-Medium.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Quicksand-Regular, sans-serif;
    transition: all 0.3s ease;
}

body {
    height: 100vh;
    overflow: hidden;
    width: 100vw;
}

.stanza {
    font-family: Quicksand-Medium, sans-serif;
    margin-top: 40px;
    margin-bottom: 5px;
    font-weight: 500;
}

header {
    background-color: #3B7197;
    height: 7vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: Quicksand-SemiBold, sans-serif;
}

.lyrics {
    padding: 20px 50px;
    overflow-y: scroll;
    height: 88vh;
}

.lyrics::-webkit-scrollbar,
menu::-webkit-scrollbar {
    display: none;
}

footer {
    background-color: #4A8DB7;
    height: 5vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: Quicksand-Light, sans-serif;
}

.menuBtn {
    position: fixed;
    right: 20px;
    bottom: 45px;
    z-index: 10000;
    width: 55px;
    height: 55px;
    font-size: 30px;
    background-color: #78A6C8;
    color: #fff;
    border: none;
    border-radius: 5px;
}


.menuBtn .close {
    display: none;
}

.menuBtn.active {
    right: 0;
    bottom: 0;
    background-color: #326789;
}

.menuBtn.active .close {
    display: block;
}

.menuBtn.active .hamburger {
    display: none;
}


menu {
    position: absolute;
    top: 100vh;
    right: 0;
    background-color: #E9EEF2;
    width: fit-content;
    height: 100vh;
    padding: 30px 0 0 30px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow-y: scroll;
}

menu.active {
    top: 0;
}

.groupName {
    font-size: 10px;
    right: 0;
}

menu ul {
    list-style-type: none;
    padding-top: 10px;
}

menu ul li {
    background-color: #c8d6e2;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 2px;
    font-family: Quicksand-Light, sans-serif;
    cursor: pointer;
}

menu ul li:hover {
    background-color: #9cbbd4;
}

.refresher {
    font-family: Quicksand-SemiBold, sans-serif;
    background-color: #5384ad;
    color: #fff;
    display: none;
}

.refresher:hover {
    background-color: #2f608a;
}

.refresher.online {
    display: block;
}

.invitationBtn {
    font-family: Quicksand-SemiBold, sans-serif;
    background-color: #2c608a;
    color: #fff;
}

.invitationBtn:hover {
    background-color: rgb(40, 82, 119);
}

.editSongsBtn {
    font-family: Quicksand-SemiBold, sans-serif;
    background-color: #234c6d;
    color: #fff;
}

.editSongsBtn:hover {
    background-color: #214463
}

.logOutBtn {
    font-family: Quicksand-SemiBold, sans-serif;
    background-color: #152e42;
    color: #fff;
}

.logOutBtn:hover {
    background-color: #0d1c29;
}

.switchAccountsBtn {
    font-family: Quicksand-SemiBold, sans-serif;
    background-color: #5799cc;
    color: #fff;
}

.switchAccountsBtn:hover {
    background-color: #4b86b3;
}

.message {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 88vh;
}

.message .alertBox {
    color: #fff;
    padding: 20px 30px;
    border-radius: 5px;
}

.message .alertBox h1 {
    margin-bottom: 10px;
}

.message .alertBox .messageBtn {
    margin-top: 5px;
    width: 100%;
    border: 1px solid #ffffff80;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.message .alertBox .messageBtn.danger {
    background-color: #c90000;
}

.message .alertBox .messageBtn.success {
    background-color: #43b13d;
}



.message .alertBox.danger {
    background-color: #ff0000;
}

.message .alertBox.success {
    background-color: #09ad00;
}

.songListForEditing,
.listOfAccounts {
    list-style-type: none;
}

.songListForEditing a,
.listOfAccounts a {
    text-decoration: none;
}

.songListForEditing a li,
.listOfAccounts a li {
    background-color: #3B7197;
    color: #fff;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.songListForEditing a li.newSong,
.listOfAccounts a li.newSong {
    background-color: #3b975a;
}

.songListForEditing a li:hover,
.listOfAccounts a li:hover {
    background-color: #336486;
}

.songListForEditing a li.newSong:hover,
.listOfAccounts a li.newSong:hover {
    background-color: #31814c;
}

.registerBtn,
.loginBtn {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background-color: #3b975a !important;
    color: #fff;
    border-radius: 5px;
    border: none;
    margin-top: 5px;
}

.registerBtn:hover,
.loginBtn:hover {
    background-color: #31814c !important;
}


/*# sourceMappingURL=register.css.map */