table.center {
    margin-left: auto;
    margin-right: auto;
}

table.main {
    td.profile {
        font-family: Alegreya, serif;
        color: #760077;
        text-align: right;
        vertical-align: middle;

        span.title {
            font-weight: bold;
            font-size: 20.0px;
        }

        span.subtitle {
            font-size: 17.0px;
            font-weight: normal;
        }
    }

    td.tagline {
        font-family: Alegreya, serif;
        font-size: 23.0px;
        text-align: center;
        color: rgb(82, 0, 130);
        font-weight: bold;
    }
    
    img.profilePhoto {
        border-radius: 15px;
        border: 1px solid #000000;
    }

    hr.header {
        height: 1px;
        background-color: white;
        border: none;
        margin: 0px;
        margin-bottom: 5px;
    }
}

table.menu {
    td {
        text-align: center;
    }

    td.menubreak {
        font-family: Alegreya, serif;
        font-weight: bold;
        color: black;
        width: 5px;
    }

    div.menuitem {
        position: relative;
        display: inline-block;
        text-align: center;
    }
        
    a.menubutton {
        color: rgba(43, 21, 55, 0.5);
        padding: 2px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
        border: none;
        cursor: pointer;
        font-family: Alegreya, serif;
        text-decoration: none;
        font-weight: bold;
    }
    
    a.menuselected {
        color: rgb(82, 0, 130);
    }

    div.menuitem:hover a.menubutton {
        background-color: rgb(82, 0, 130);
        color: white;
    }

    div.menuitem:hover div.menudropdown {
        display: block;
    }

    div.menudropdown {
        display: none;
        position: absolute;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    div.menudropdown a:hover {
        background-color: rgb(82, 0, 130);
        color: white;
    }

    div.menudropdown a {
        background-color: rgb(209, 209, 224);
        padding: 5px;
        display: block;
        color: rgba(43, 21, 55, 0.8);
        font-size: 14px;
        border: none;
        cursor: pointer;
        font-family: Georgia,serif;
        text-decoration: none;
    }
}

.maincontent {
    padding: var(--main-content-margin);
    margin-top: 5px;
    margin-bottom: var(--main-content-margin);
    border: solid 1px black;
    border-radius: 10px;
}
