:root {
    --main-color: #E30613;
    --main-hover-color: #E83742;
    --secondary-color: #217B3D;
    --secondary-hover-color: #4D9563;
    --disabled-color: #888888;
    --link-color: #3C91E6;
    --link-hover-color: #62A7EB;
    --text-main-color: #FFFFFF;
    --text-secondary-color: #000000;
}

/* BODY */
body {
    height: 100dvh;
    width: 100vw;
    padding: 0;
    margin: 0;
    font-family: "Montserrat";
    overflow: hidden;
    cursor: default;
}

    /* HEADER */
    header {
        position: relative;
        display: flex;
        height: 70px;
    }

        /* LOGO */
        #logo {
            width: 200px;
            height: 60px;
            margin-top: 5px;
            margin-left: 10px;
            background-image: url('/img/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
        }

        /* NAV */
        #nav {
            width: calc(100% - 330px);
        }

            #nav ul {
                display: flex;
                list-style: none;
                padding: 0;
                margin: 0;
                list-style: none;
                align-items: center;
                justify-content: center;
                height: 100%;
                gap: 20px;
                font-size: 1.2rem;
            }

                .menus {
                    color: var(--main-color);
                    cursor: pointer;
                }

                    .menus:hover {
                        color: var(--secondary-color);
                    }
                
                    .menus.selected {
                        color: var(--secondary-color);
                    }
            
        /* LOGOUT */
        #signout {
            width: 130px;
            line-height: 70px;
            color: var(--main-color);
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 10px;
        }
            
            #signout i {
                margin-left: 10px;
                font-size: 1.2rem;
            }

            #signout:hover > span {
                text-decoration: underline;
            }

    /* CONTENT */
    #subsaccount {
        position: fixed;
        top: 90px;
        left: 20px;
        height: 30px;
        display: none;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        background-color: var(--main-color);
        border-radius: 10px;
        color: var(--text-main-color);
        padding: 0 10px;
        font-size: 14px;
        cursor: pointer;
        z-index: 1001;
    }

        #subsaccount:hover {
            background-color: var(--main-hover-color);
        }

        #countdown {
            margin-right: 5px;
            font-weight: bold;
        }

    section {
        position: relative;
        height: calc(100% - 90px);
    }

    /* FOOTER */
    footer {
        position: relative;
        height: 20px;
        line-height: 20px;
        color: var(--main-color);
        font-weight: bold;
        text-align: center;
        letter-spacing: 2px;
    }