@font-face {
  font-family: bookman; /* set name */
  src: url(font/URWBookman-Light.ttf); /* url of the font */
}

@media only screen and (max-width:529px){
    .introContainer
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .introContainer #leftSide
    {
        display: flex;
        flex-direction: column;
        
    }
    .introContainer .socialsIcons 
    {
        display: flex;
        width:100%;
        flex-direction: row;
        justify-content: center;
    }
}
@media only screen and (min-width:530px){
    .introContainer{
        flex-direction: row;
    }
}

html
{
    background-image:url("img/bgtreesSmallAlt.png");
    background-color: rgba(8, 16, 17,0.5);
    margin:0;
    padding:0;
    border:0;
    font-family: bookman;
    scrollbar-color: rgb(34, 34, 34) black;
    color:rgb(222, 222, 222);
    width:100%;
    height:100%;
}

body
{
    margin:0;
    padding:0;
    border:0;
    width:100%;
    box-shadow: inset 0 0 500px black;
    
    height:100%;
    min-height:1200px;
}
#overContent
{
    height:30px;
    width:100%;
    max-width: 960px;
    display: flex;
    justify-content: right;
}
#overContent a 
{
    aspect-ratio: 1.6;
}
#languageImage
{
    
    height:100%;
}
.wrapper
{
    padding-top:50px;
}

.content
{
    max-width: 960px;
    height: 100%;
    background-color: rgb(16, 37, 41);
    border:5px double rgb(7, 14, 15);
    border-radius: 5px;
}

.title h1
{
    color:white;
    text-align: center;
}
.introContainer
{
    display: flex;
}

.introContainer .sideBySide
{
    height: 100%;
    width:80%;
}
.introContainer .sideBySide p
{
    margin-top: 40px;
    
}

.sideBySide
{
    display: flex;
    justify-content: center;
    flex-direction: row;
    overflow-y: hidden;
}

.panel #imageContainer 
{
    aspect-ratio: 1;
    height:100%; 
}

.introContainer #imageContainer
{
    aspect-ratio: 1;
    height:200px;
    float:left;
}
.introContainer #imageContainer img
{
    height:70%;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.8);
}
.introContainer .sideBySide
{
    height:auto;
}

.panel #imageContainer
{
    height: 200px;
}
.panel #imageContainer img 
{
    height:60%;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.8);
}
.sideBySide #textContainer
{
    max-width: 50%;
    display: inline-block;
    line-height: 200px;
    vertical-align: middle;
}
.sideBySide #note
{
    width:30%;
    height:100%;
}


.panel
{
    background-color: rgba(0, 0, 0, 0.15);
    min-height: 200px;
}
.panel2
{
    background-color: rgba(0, 0, 0, 0.15);
    border-top:5px solid rgb(21, 34, 37);
}

.contactIcons
{
    display: flex;
    justify-content: center;
}

.contactIcons #imageContainer
{
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    height:200px;
}

.contactIcons #imageContainer img 
{
    height:80px;
}

.socialsIcons
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100px;
    height: 100%;
    line-height: 18px;
}

.socialsIcons #imageContainer
{
    aspect-ratio: 1;
    height:50px;
    margin:20%;
    
}

.socialsIcons #imageContainer img 
{
    aspect-ratio: 1;
    height:50px;
    box-shadow: none;
}



/*--------- ATTRIBUTE SELECTORS --------*/
/* CENTERING (HORIZONTAL AND VERTICAL)*/
.centerChildrenHV
{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Used for debugging position and size of element. */
.debug
{
    background-color: purple;
}
/* Used for debugging position and size of element. */
.debug2
{
    background-color: blue;
}
.marginLR10
{
    margin-left: 10%;
    margin-right: 10%;
}
.paddingLR5
{
    margin-left:5%;
    margin-right:5%;
}

.vSpace
{
    height:50px;
    width:100%;
}

.onHoverFocus
{
    position: relative;
    box-shadow: none;
    transition: all 0.6s ease;
}
.onHoverFocus::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0px 30px rgba(255, 255, 255, 0.25);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.onHoverFocus:hover
{
    background-color: rgba(255,255,255,0.1);
}
.onHoverFocus:hover:after
{
    opacity:1;
}
.noStyleLink
{
    text-decoration: none;
    color:whitesmoke;
}

.flexGrowDown
{
    flex-direction: column;
}
.justifyRight
{
    justify-content: right;
}

.centerTextVertically
{
    display: inline-block;
    vertical-align: middle;
    line-height: 18px; 
}

.spacedText
{
    line-height: 20pt;
}

.softText
{
    color: silver;
}

.img3by4
{
    aspect-ratio: 1.33333;
}
.img13by10
{
    aspect-ratio: 1.3;
}
.img1by1
{
    aspect-ratio: 1;
}

.textAlignRight
{
    text-align: right;
}

.floatLeft
{
    float: left;
}
