/* GLOBAL RULE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    overflow: auto;
}


/* TOP SECTION */
body {
    background-color: #f0f0f0;
}

header {
    background-color: white;
    text-align: center;
    padding-top: 50px;
}

header .title {
    font-size: 50px;
    font-weight: 900;
}

header .subtitle {
    padding: 12px 0px;
    font-size: 18px;
    margin-bottom: 20px;
}

nav {
    background-color: #f6f6f6;
    position: sticky;
    top: 0;
    padding: 25px;
}

nav a{
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    text-align: center; 
}

header img {
    width: 300px;
}

header .title {
    display: none;
}

/* MAIN SECTION */
.grid-container {
    margin: 50px 0 100px 0;
    padding: 0 0 0 10px;
    float: left;
    max-width: 75%;
    text-align: center;
}

.grid-child {
    display: inline-block;
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
    max-width: 350px;
    background-color: #fff;
    text-align: left;
}

.hover:hover {
cursor: pointer;
font-weight: bold;
box-shadow: 5px 5px 50px #dbdbdb;
transition: box-shadow 0.3s ease-out;
position: relative;
top: -8px;
}


.text-content {
    padding: 10px;
}

img {
    width: 100%;
}

.text-content h2 {
    font-size: 25px;
    margin: 10px 0 15px 0;
}

.text-content a {
    text-decoration: none;
    color: #000;
}


/* ASIDE SECTION */
.aside {
    float: left;
    margin: 60px 0;
    max-width: 25%;
    /* min-width: 100px; */
    text-align: center;
    padding: 0 20px 0 5px;
}


.biography {
    background-color: white;
    padding: 25px 40px;
    border-radius: 15px;
    width: 100%;
    clear: both;
}

.biography img {
    padding: 25px 10px;
    max-width: 150px;
    border-radius: 50%;
}

.biography  p{
    padding-bottom: 10px;
}

.biography  a{
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

/* FOOTER SECTION */
footer {
    text-align: center;
    padding: 50px;
    color: white;
    background-color: #2b2155;
    clear: both;

}
    
footer p{
padding: 5px 0;
}

footer a {
    color: white;
}

footer img {
    width: 200px;
    margin: 10px 0;
}