/* Opening Comment */

*{
    padding: 0;
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    background-color: black;
}
.heroSection {
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}
.bioName {
    padding: 100px 0 30px 0;
    font-weight: 900;
    font-size: 80px;
    text-align: center;
}
.bioEmail {
    padding: 20px;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}

/* Calender */

.aptCalender {
    margin: 10px;
    background-color: black;
    height: 1200px;
}
.aptCalender iframe {
    background-color: white;
    border-radius: 10px;
}

/* Footer and Header */

.myFooter {
    display: grid;
    justify-content: center;
    align-content: center;
    position: relative;
    height: 100px;
    width: 100%;
    background-color: rgb(255, 255, 255);
}
.thanks {
    color: black;
    background-color: rgb(255, 255, 255);
}


.myHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: linear-gradient( rgba(0,0,0,1) 40px,rgba(255,255,255,0));
    opacity: 0.3;
    transition: opacity 0.3s;
}
.myHeader:hover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: linear-gradient( rgba(0,0,0,1) 40px,rgba(255,255,255,0));
    opacity: 1;
    transition: opacity 0.5s;
}
.links a {
    text-decoration: none;
    text-align: center;
}
.r{color: rgb(255, 75, 75);}
.g{color: rgb(75, 255, 75);}
.b{color: rgb(75, 75, 255);}
.w{color: rgb(255, 255, 255);}
.links {
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: white;
    text-align: center;
}