/* Transitions */
@keyframes transitionIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p {
    font-family: "Judson";
    color: #D6D9B6;
}

a {
    color: #2c448a;
}

body {
    background-color: black;
}

.transition {
    animation: transitionIn 1s;
}

.navTransition{
    animation: transitionIn 500ms;
}

/* Nav Bar*/

ul {
    list-style: none;
}

#navUl {
    display: flex;
    padding: 0;
    margin-top: 30px;
    align-items: center;
    justify-content: space-evenly;
}

#webNavBar a{
    color: #D6D9B6;
    text-decoration: none;
    font-size: 22px;
    font-family: "Judson", serif;
    padding-right: 4px;
}

#webNavBar li{
    padding: 12px 16px;
}

.dropdownMenu a {
    padding: 0;
    font-size: 16px !important;
}

.dropdownMenu li {
    padding: 8px 10px;
}

.dropdownMenu{
    padding: 0;
    background-color: #000000;
    opacity: 0.7;
    border-radius: 2px;
}

#webDropdownMenu{
    position: absolute;
    width: 170px;
}

#hamburger{
    height: 30px; 
    position: fixed; 
    top: 35px; 
    right: 20px;
    cursor: pointer;
}

#mobileLogo{
    position: fixed;
    width: 100px;
    margin-top: 10px;
    margin-left: 15px;
    top: 20px;
}

#mobileUl {
    padding: 0;
    margin: 0;
    text-align: right;
    list-style: none;
    position: fixed;
    right: 10px;
    top: 70px;
}

#mobileUl li{
    padding: 8px 10px;
}

#mobileUl a{
    color: #D6D9B6;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    #webNavBar {
        display: none;
    }
    #mobileNavBar{
        display: inline;
    }
}
@media only screen and (min-width: 600px) {
    #webNavBar {
        display: inline;
    }
    #mobileNavBar{
        display: none;
    }
}

/* Home Page */
#bgVideo { 
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

/* Live Page */
#coverImg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

.showText {
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

.showContainer{
    background: rgb(0, 0, 0, 0.6);
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    margin-top: 20%;
}

.photoCredit {
    font-family: "Judson";
    color: #838571;
    right: 20px;
    bottom: 20px;
    position: fixed;
}

@media only screen and (max-width: 600px) {
    .photoCredit {
        left: 0;
        text-align: center;
    }
    .showContainer{
        margin-top: 70%;
    }
}

/* Bio Page */
.bioText {
    text-indent: 30px;
    margin: 10px 0px;
    font-size: 18px;
}

.bioContainer{
    background: rgb(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    padding: 2px 10px;
    width: 85%;
    margin-bottom: 100px;
}

.centerContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .bioContainer {
        margin-top: 150px;
        width: 84%;
        overflow: scroll;
        max-height: 55vh;
    }
}

@media only screen and (max-width: 415px){
    .centerContainer{
        text-align: center;
    }
    #mailIcon{
        display: none;
    }
}

hr {
    border: .01rem solid #d6d8b8;
    width: 60%;
    margin-top: 0;
}