@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* @media screen and (max-width: 481px) {
    header {
        float: left;
        font-size: 15px;
    } 
} */

*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    color:var(--primary-color);
    text-decoration: none;
}

:root{
    --primary-color: #FFBA08;
    --secondary-color: #F1FFFA; 
    --background-color: #1E1E24;
}

html
{
    height:100%;
}
body
{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;

    background-color: var(--background-color);
    height:100%;
}

.logo_container
{
    display: flex;
    align-items: center;

    transition: 100ms ease;
}
.logo_container:hover
{
    -webkit-transform: scale(105%);
    -moz-transform: scale(105%);
    -o-transform: scale(105%);
    transform: scale(105%);
}

.logo
{
    width: 64px;
    height: 64px;
    
    margin-right: 16px;
}

header
{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 16px;

    background-image: linear-gradient(rgba(0, 0, 0, 255),rgba(0, 0, 0, 0));
    user-select: none;
}

.nav_links
{
    list-style: none;
}
.nav_links li {
    display: inline-block;
    padding: 0px 16px;
    transition: 100ms ease;
}
.nav_links li:hover
{
    -webkit-transform: scale(105%);
    -moz-transform: scale(105%);
    -o-transform: scale(105%);
    transform: scale(105%);
}

.landing_page
{
    margin-bottom: 50px;
}

#landing_image
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px var(--primary-color) solid;
    width: 100%;
}

.content_container
{
    display: block;
    /* background-color: chocolate; */
    /* max-width: 50vw; */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20vh;
}
.whyCoachContainer
{
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vh;
    max-width: 40vw;
    /* margin: 0 25%; */
    /* background-color: gray; */
    letter-spacing: 2px;
}
.whyCoachContainer h1
{
    margin-bottom: 30px;
}
.whyCoachContainer p
{
    color: var(--secondary-color);
    font-family: monospace;
}

.image-container-row
{
    display: flex;
    flex-direction: row;
    max-width: 100%;
    margin-bottom: 10px;
    
}

.image-container-row img
{
    width: 80%;
    /* padding: 10px 10px; */
}

footer
{
    height: 20px;
    width: 100%;
    
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0% 0%;
    position: fixed;
    bottom: 0pt;
    left: 0pt;

    color: var(--background-color);
    background-color: var(--primary-color);
}
.footer_content
{
    font-size: 20px;
    display: flex;
    height:30px;
    width: 1000px;
    justify-content: center;
    
    margin: auto;
}
.footer_content a
{
    color: var(--background-color);
}


.floatLeft {
    float: left;
    padding-left: 1%;
}

.testWhite{
    color: white;
}

.testLongText {
    padding-top: 10px;
    font-size: 25px;
    font-family: monospace;
}

.testimonialContainer
{
    display: flex;
    flex-direction: column;
    width: 100%;
    /* background-color: red; */
}

.testimonial {
    margin-bottom: 50px;
}

.testimonialName {
display: flex;
}

.testimonialName a{
    margin-right: 10px;
}

.testimonialName label {
    color: var(--secondary-color);
}

.testimonialDesc {
    font-family: monospace;
    display: flex;
    font-size: 25px;
}

.testimonialDesc p {
    color: var(--secondary-color);
}

/* #testimonialText1 {
    float: left;
} 

#testimonialText2 {
    color: white;
    float: left;
}

#testimonialText3 {
    padding-top: 10px;
    font-size: 25px;
    font-family: monospace;
    color: white;
    float: left;
} */

#boastList {
    font-family: monospace;
}

