* {
    margin: 0;
    padding: 0;
    font-family: 'Smooch Sans', sans-serif;
    font-size: 1.3rem;
}

::-webkit-scrollbar {
    width: 0;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1.7rem;
}

p, ul{
    margin-bottom: 1rem;
}

html {
    scroll-behavior:auto;
}

.screen {
    position: relative;
    max-width: 100%;
    background-color:#40403f;
    overflow: auto;
    align-items: center;
    /* border-bottom:#f1f1f1;
    border-width: 5px;
    border-style: solid; */
}

.flip_colors {
    background-color:ivory;
    color:black;
}

.flip_colors div {
    color: black;
}

.full_fit {
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: 1;
    position: absolute;
}

.portrait {
    max-width:100%;
    max-height:500px;
    object-fit: cover;
}

.tint {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .8;
    z-index: 2;
    position: absolute;
}

.text {
    z-index: 3;
    position: relative;
    color: white;
    margin: 4rem auto;
    max-width: 60vw;
}

.two_col_text {
    z-index: 3;
    position: relative;
    color: white;
    display: grid;
    grid-template-columns: 45% 45%;
    column-gap: 10%;
    max-width: 60vw;
    margin: 4rem auto;
}

.two_col_title {
    grid-column-start: 1;
    grid-column-end: 3;
    line-height: normal;
    margin-bottom: .25em;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
  
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#home{
    min-height: 40dvh;
}

#contact {
    min-height: 20dvh;
    border-style: none;
}

#home_text{
    display: flex; 
    text-align: center;
    align-items: center;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    margin: auto;
    div h1 {
        font-size: 4rem;
    }
    div p {
        font-size: 1.5rem;
    }

    img {
        max-height:200px;
        max-width: 60svw;
        margin-right: 1rem;
    }
}

/* #home_text img {
    height:200px;
    margin-right: 1rem;
}

#home_text div h1, #home_text div p {
    font-size: 3rem;
} */

.hamburger {
    color:black;
    z-index: 4;
    position: fixed;
    top: .75rem;
    left: .75rem;
    background-color: ivory;
    border-radius: 10px;
}

.hamburger:hover {
    color:darkgray;
}

.blue_button:hover {
    background-color: aqua;
}

.slideshow_pic {
    max-height: 80dvh;
    max-width: 80vw;
    margin: auto;
}

#workouts {
    border-bottom: 20px solid ivory;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
  }
  .video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%; 
    min-height: 100%; 
  
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;
  
    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

@media screen and (max-width: 992px) {
    .sidenav {padding-top: 15px;}
    .two_col_text{display: block; max-width: 70vw;}
    .two_col_title{font-size: 1.2rem;}
    .text { max-width: 70vw;}
    #contact_info_footer {
        font-size: 1rem;
    }
    #home_text {
        display: block; 
        text-align: center; 
        width: 100%;
        div h1 {
            font-size: 3rem;
        }
        div h2 {
            font-size: 1.4rem;
        }
        div p {
            font-size: 1.2rem;
        }
        img {
            margin-right: 0;
        }
    }
    
    .portrait {display: none;}
  } 

