/* simple reset rule to set page defaults*/
* {
    margin: 0;padding: 0;border: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /*16px *.625= 10px*/

    --color-bg1: #EEE5E9;
    --color-bg2: #EFC88B;
    --color-fn1: olive;
    --color-accent1: #cf5c36;

}

body{
    background-color: rgba(14, 17, 27,.6);
    color: var(--color-fn1);
    font-size: 1.4rem;
}

#container{
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 2%;
}

.tiles{
    display: flex;
    height: 80%;
    width: 24%;
    flex-wrap: wrap;
    box-shadow:5px 5px 5px rgb(12, 26, 37);
}

#one{
    background-image: url(/images/web1.png) ;
    background-repeat: no-repeat;
    background-size: cover;
}

#two{
    background-image: url(/images/web2.png) ;
    background-repeat: no-repeat;
    background-size: cover;
}

#three{
    background-image: url(/images/web3.png) ;
    background-repeat: no-repeat;
    background-size: cover;
}

#four{
    background-image: url(/images/web4.png) ;
    background-repeat: no-repeat;
    background-size: cover;
}

#one:hover :not(.button) {
    backdrop-filter: blur(3px);
    transition: .8s;
    z-index: 1;
}

#two:hover :not(.button) {
    backdrop-filter: blur(3px);
    transition: .8s;
    z-index: 1;
}

#three:hover :not(.button) {
    backdrop-filter: blur(3px);
    transition: .8s;
    z-index: 1;
}

#four:hover :not(.button) {
    backdrop-filter: blur(3px);
    transition: .8s;
    z-index: 1;
}

.content{
    width: 100%;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    padding-top: 78%;
    z-index: 1;
}

.content:hover .button{
    transition: .8s;
    visibility: visible;
    border-radius: 15px;
    filter: none;
    box-shadow: 4px 4px 4px rgba(255, 255, 0, 0.61);

}

.button{
    min-width: 170px;
    height: 60px;
    visibility: hidden;
    background-color: rgba(15, 14, 39, 0.5);
    filter: none;
    z-index: 9999;
    transition: ease-in;
    text-align: center;
    padding-top: 8px;
    font-size: 180%;
}

.content:active{
    transition: ease-in;
    top: 5px;
    right: -5px;
    position: relative;
}

.tiles:active{
    box-shadow: 4px 4px 4px rgba(255, 255, 0, 0.61) ;
}

.desc{
    width: 24%;
    height: 10%;
    margin-top: -9.5vh;
    box-shadow:5px 5px 5px rgb(12, 26, 37) ;
    background-color: rgba(15, 14, 39, 0.5);
    border: 4px yellow;
    border-style: solid none none solid;
    padding: 8px;
    padding-left: 25px;
}

a{
    text-decoration: none;
    color: white;
}

h2{
    font-family: sans-serif;
}

header{
    text-align: center;
    font-family: sans-serif;
    color: whitesmoke;
    background-color: rgba(14, 17, 27,.6);
    height: 6vh;
    border-radius:0px 0px 100px 100px ;
    font-size: 24pt;
}

.hdesc{
    font-family: sans-serif;
    color: whitesmoke;
    font-size: 18pt;
}