/* **********
   own styles
   ********** */
   
/* *************************************************************** */
/* mobile first approach: following styles are for mobile screens  */
/* *************************************************************** */

body {
    margin-left: 10px;  /*TODO: maybe align everything center on smaller mobile screens*/
}

header {
    width: 100%;
    position: fixed;
    background-color: #434343;
    z-index:1;
}

#mainContent {
    padding-top: 10em;
}

h1 {
    padding-top: 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.tileFlexContainer {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */ /*TODO: when there is more content, this could be back in place */
    flex-wrap: wrap;
}

.contentTile {
    width: 240px;
    margin: 5px;
    border: 1px solid;
    border-radius: 5px;
    border-color: #000000;
    box-shadow: 0 5px 5px -3px black;
}

.tileSymbol {
    padding: 2px;
}

.imageInTile {
    position: relative;
   /* -webkit-clip-path: inset(240px 240px 50px 50px );
    clip-path: inset(240px 240px 240px 240px); */
    width: 240px; 
    height: auto;
    margin: auto;  /* auto adjust position in the middle */
    opacity: 1;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.tileText {
    text-align: center;
}

.contentTile:hover .imageInTile {
    opacity: .7;
}


/* *************************************************************************** */
/* mobile first approach: so the following styles are only for bigger screens  */
/* *************************************************************************** */

@media (min-width: 75em) {
    body {
        margin-left: 20%;
        margin-right: 20%;  
    }

    header {
        width: 80%;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}