/* My opening comment */

* {
    padding: 0;
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    color: white;
}
.pageContent {
    background-color: black;
}

/* Page intro and name */

.namePlate {
    display: block;
    position: relative;
    width: 100vw;
    height: 100vh;
    align-content: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}
.nameText {
    display: grid;
    align-content: center;
    justify-content: center;
    color: white;
}
.name {
    display: grid;
    align-content: center;
    justify-content: center;
    font-size: 120px;
    font-weight: 900;
    padding: 10px;
}
.nameText h2 {
    display: grid;
    align-content: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 500;
    padding: 5px;
}
.plateBG {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
    overflow: hidden;
    z-index: -1;
}

/* Page Reel */

.pageContact {
    flex: 1 1 65vw;
    padding: 5%;
    display: grid;
    justify-content: center;
    align-content: center;
}
.contactText {
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.pageContact h3 {
    padding: 10px;
    color: white;
    font-weight: 600;
    font-size: 60px;
}
.pageContact h2 {
    padding: 10px;
    color: white;
    font-weight: 600;
    font-size: 80px;
}
.pageContact a {
    text-align: center;
    color: black;
    padding: 15px;
    border-radius: 20px;
    background-color: white;
    align-content: center;
    justify-content: center;
}
.reel {
    padding: 3px;
    border-radius: 20px;
    box-shadow: 8px 8px 20px 0px rgba(255, 255, 255, 0.15) , -3px -2px 15px 0px rgba(255, 255, 255, 0.2);
}

/* Bio Section */

.pageBio {
    flex: 1 1 500px;
    padding: 5%;
    display: grid;
    justify-content: center;
    align-content: center;
    color: white;
    text-align: center;
}
.bioName {
    padding: 20px;
    font-weight: 900;
    font-size: 80px;
}
.bioEmail {
    padding: 10px;
    font-weight: 700;
    font-size: 50px;
}
.bioText {
    line-height: 1.5;
    padding: 0 100px 0 100px;
    font-weight: 300;
    text-align: left;
    font-size: 20px;
}

/* Project Accordion */

.accordionProjects h2 {
    padding: 10px;
    text-align: center;
}
.accordion {
  background-color: rgb(255, 50, 50);
  color: black;
  cursor: pointer;
  padding: 18px;
  font-size: 30px;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
}
.active {
    background-color: rgb(50, 50, 255);
    transition: 0.5s;
}
.accordion:hover {
  background-color: rgb(50, 255, 50);
  transition: 0.5s;
}
.panel {
  padding: 18px;
  display: flex;
  background: linear-gradient(0deg, rgb(255, 50, 50) 2%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgb(50, 50, 255) 98%);
  display: none;
  overflow: hidden;
}
.panel p {
    flex: 1 1 35%;
    padding: 50px;
    color: black;
    background-color: rgba(0, 0, 0, 0);
    line-height: 1.3;
    font-size: 30px;
}
.panel video {
    flex: 1 1 50%;
    width: 80%;
    border-radius: 10px;
    transform: translate(10%,0);
    background-color: rgba(0, 0, 0, 0);
}
.panel img {
    width: 30%;
    flex: 0 1 40%;
    border-radius: 5px;
    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%);
}
.contactCalender {
    text-decoration: none;
    color: black;
    font-weight: 600;
    padding: 10px;
    border-radius: 20px;
    width: fit-content;
    background-color: white;
    justify-self: center;
}

/* Top Navigation Bar and Footer */

.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;
}
