:root{
    --white:#F5F5F5;
    --black:#000000;
    --gray:#443E34;
    --neutral:#FBF8F4;
    --blue:#66C9E7;
    --green:#6BAB83;
    --orange:#F28B5C;
    --purple:#797DC9;
    --red:#ED6A5A;
    --yellow:#F4B95F;    
}

*, html, body{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    color:var(--gray);    
}

html, body{
    width: 100%;
    height: 100%;
    background-color: var(--neutral);
}

body{
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.font-syne{
    font-family: 'Syne', sans-serif;
}

.mobile-only{
    display: none;
}

#menu-holder img{
    width: 60px;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 18px;    
}

header nav{
    display: flex;
    column-gap: 32px;
}

header nav a{
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 700;
}

header i{
    font-size: 1.5rem;
}

.mobile-menu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--purple);        
    z-index: 1000;    
}

.inner-holder{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.mobile-menu.open{
    display: block;
}

.mobile-menu .close-header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.mobile-menu nav{
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.mobile-menu nav a{
    font-size: 9vw;
    font-weight: 700;    
    text-decoration: none;       
    color:var(--neutral);
    font-family: 'Syne', sans-serif;
}

header nav a:hover, .enter:hover a div{
    color:var(--blue)
}

.mobile-menu span, .mobile-menu span i{
    color:var(--neutral);
    font-size: 1.5rem;
}

.mobile-menu img{
    filter:invert();
}

.my-block{
    overflow: hidden;
    height: fit-content;    
}

.my-block.orange img{background-color: var(--orange);}
.my-block.red img{background-color: var(--red);}
.my-block.green img{background-color: var(--green);}
.my-block.blue img{background-color: var(--blue);}
.my-block.purple img{background-color: var(--purple);}
.my-block.white img{background-color: var(--white);}
.my-block.yellow img{background-color: var(--yellow);}
.my-block.tl, .my-block.tl img, .my-block.enter{border-top-left-radius: 50%;}
.my-block.tr, .my-block.tr img{border-top-right-radius: 50%;}
.my-block.br, .my-block.br img{border-bottom-right-radius: 50%;}
.my-block.bl, .my-block.bl img{border-bottom-left-radius: 50%;}
.my-block.border{border:1px solid var(--gray);}

.my-block img{
    width: 100%;
    background-size: cover;
    background-blend-mode: multiply;
}

.my-block img.onhover:hover{
    background-color: rgba(0,0,0,0);
}

main{
    flex:1;
    align-items: center;
    display: flex;
}

main aside{    
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;        
}

main aside .my-block{
    width: calc(33vh - 50px);
}

main aside .my-block{
    display: flex;
    align-items: center;
}

main aside .my-block:nth-child(2n + 1){
    justify-self: flex-end;
}

.default-grid{
    display: grid;
    height: 100%;
    grid-template-columns: 2fr 3fr;
    width: 100%;
}

footer{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px; 
}

footer .circle{
    border-radius: 50%;
    border: 1px solid var(--gray);
    width: 32px;
    height: 32px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    transform: translateX(-12%);
}

footer hr{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 0;
}

.mobile-only{
    display: none;
}

@media screen and (max-width: 769px){
    .mobile-only{
        display: flex;
    }

    .desktop-only{
        display: none !important;
    }

    header{
        border-bottom: none;
    }
}