body{
    background-image: url("/pictures/background.jpg");
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: rgb(255, 255, 255);
    font-size: 22px;
    margin: 0px 0px 0px 0px;
    width: 100%;
}



.title p{
    font-size: 140%;
    text-align: center;
    font-family: 'Brush Script MT', cursive;
}
#topTitle{
    margin-top: 50px;
}


.personCard{
    width: 40%;
    margin-left: 30%;
    margin-top: 5%;
    background-color: rgb(0, 0, 0);
    color: rgb(150, 150, 150);

    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-width: 5px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);

    font-size: 90%;
}

.personLogo{
    width: 100%;
    height: auto;
}
.personText{
    margin-left: auto;
}
.person{
    text-align: center;
}
#personName{
    font-size: 130%;
}


.content{
    width: 100%;
    margin-left: 0%;
}

.content ul{
    margin-left: -40px;
    width: 100%;
}

.content ul li{
    width: 70%;
    height: 150px;
    margin-left: 15%;
    margin-top: 20px;
    padding-left:30px;
    list-style: none;

    background-color: rgba(0, 0, 0, 1);
    color: rgb(150, 150, 150);

    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-width: 5px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.content ul li a{
    
    text-decoration: none;
    box-shadow: inset 0 0 0 0 #3798bc;
    color: #54b3d6;
    padding: 0 .25rem;
    margin: 0 -.25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.content ul li a:hover {
    color: #cdcdcd;
    box-shadow: inset 200px 0 0 0 #3798bc;
}

.content ul li a {
    color: #54b3d6;
    font-family: 'Poppins', sans-serif;

    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}