
:root{
    
    --body_text_color:#555;
   }


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
/*    background-color: var(--card_background_color); */
    background-color: #555;
    color: var(--body_text_color);
    display: flex;
    flex-direction: column;
    flex-wrap:wrap;
    width: 100%;
    height: auto;
    border: dotted white  2px;
    justify-content: flex-start;
}

body h1{
    color: white;
}

img{
        display: block;
        width: 100%;
        height: auto;
}

video{
    width: 100%;
    height: auto;
}

/* ************************************************************************** */

.main_wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    max-width: 100%;
    min-width: 10%;
    height: auto;
/*    align-items:stretch; */
    justify-content: space-evenly;
    border: blue 1px solid;
    margin-inline-start: auto;
}


/* ************************************************************************** */
.index_card{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    border-radius: 2%;
    border: red solid 2px;
    margin: 10px;
    padding: 10px;
    color: yellow;
    background-color: dimgrey;
    align-content: end;  /* Horizontal*/
}


.index_card_img_wrapper{
    border: greenyellow solid 2px;
    display: flex;
    flex-direction: column;
/*    align-items:start;   Horizontal*/
    max-width: 100%;
    min-width: none;
    height: auto;
    padding: 10px;
    border-radius: 2% ;
}

.index_card_img_wrapper img{
    max-width: 100%;
    min-width: none;
    border-radius: 2% ;
}

.index_card_txt_wrapper{
    border: blueviolet solid 5px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-width: 50%;
    padding: 10px;
    align-items:center;
}

.index_card_video_wrapper{
    border: greenyellow solid 2px;

    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: auto;
    background-color: var(--one_card_wrapper);
    margin: 10px;
    padding: 0px;
}

.index_card_video_wrapper video{
    max-width: 100%;
    height: auto;
}



.index_card_links{
display: flex;
flex-direction: column;
}
.index_card_linktext{
    background-color: white;
    color: black;
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.index_card_linktext p{
    display: flex;
    flex-direction: row;
    padding-right: 30px;
}


.index_card_vertical_video_wrapper{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    min-width: 100px;
    min-height: 200px;
    margin: 0%;
    padding: 0px;
    border: lightcoral solid 2px;
    border-radius: 5%;
    justify-content: space-evenly;
}

.index_card_video_wrapper{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    min-width: 150px;
    height: auto;
    background-color: var(--one_card_wrapper);
    margin: 10px;
    padding: 0px;
}

.index_card_video_text_wrapper p{
    margin-left: 10px;
    border: chartreuse solid 1px;
    border-radius: 5%;
    margin-inline: 20px;
    padding: 10px;
    max-width: 100%;
    min-width: 150px;
    height: auto;
}



/* ************************************************************************** */
