/* Opening Comment */

*{
    padding: 0;
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
}

.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;
}
.bioText {
    line-height: 1.5;
    padding: 35px;
    font-weight: 300;
    text-align: left;
    font-size: 20px;
    max-width: 800px;
}
.resumeBox {
    padding: 75px;
    align-content: center;
    justify-content: center;
}
.resumeBox iframe {
    width: 100%;
    min-height: 800px;
    height: auto;
}
.aptCalender {
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    margin: 20px;
}
.aptCalender iframe {
    padding: 5px;
}

/* Links */

.pageLinks {
    flex: 1 1 500px;
    gap: 5px;
    padding: 5%;
    display: grid;
    justify-content: center;
    align-content: center;
}
.pageLinks a {
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-size: x-large;
    font-weight: 700;
    /* background: linear-gradient(90deg, rgba(255,0,0,0.7) 0%,rgba(255,255,0,0.7) 25% , rgba(0,255,0,0.7) 50%, rgba(0,255,255,1) 75%, rgba(0,0,255,0.7) 100%); */
}
.linkedin {
    color: white;
    background: linear-gradient(90deg, rgba(0,114,178,1) 50%, rgba(51,51,51,1) 100%);
}
.IMDb {
    color: black;
    background: linear-gradient(90deg, rgba(245,197,24,1) 50%, rgba(20,20,28,1) 100%);
}

/* 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;
}