
:root {
    --headerColor:#114078bd;
    --firstArt: #f2f2f2; 
    --textColor:#e4e4ec;
    --borderColor:#2727939d;
    --primaryColor:#312c64b3;
    --secondaryColor:#186e7d45;
    --evenArtColor:#d9e4e4;
    --tertiaryColor:#0b1a73;
    --fadedColor:#7c2282;
    --fadedColor2:#8222228c; 
    --flashColor: rgba(255,255,255,.4);
    --bgblur: blur(50px);
    --bgLessBlur: blur(25px);
    --borders:15px;
}

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

body {
    font-family: 'Assistant', sans-serif;
    min-height: 100vh;
    color: var(--textColor);
    background: linear-gradient(180deg, var(--headerColor), var(--tertiaryColor));      
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 114px;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--headerColor);
    z-index: 100;
}
.header > div{
    margin: auto;
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    width: 100%;
    align-items: center;
}
.header img {
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(1deg) brightness(110%) contrast(100%);
}
.header::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background: var(--headerColor);
    backdrop-filter: var(--bgblur);
    z-index: -1;
}
.header::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:-100%;
    background: linear-gradient(90deg, transparent, var(--flashColor), transparent);
    transition: .5s;
}
.header:hover::after {
    left:100%;
}
.header .logo > div a{
    max-width:250px;
}
.logo {
    color: var(--textColor);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 700;
}

.logo img {
   max-width: 250px;
}
.navbar a {
    color: var(--textColor);
    font-size: 1.15rem;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}
#check  {
    display: none;
}
.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: var(--textColor);
    cursor: pointer;
    display: none;
}

.container {
    width: 100%;
    display: flex;
    flex-flow: column;
    /* padding: 0 1.8rem;
    max-width: 1140px;
    margin: 100px  auto 30px auto; */
}

footer {
    background-color: var(--tertiaryColor);
    /* position: fixed; */
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    display: flex;

}

footer .footer{
    margin: auto;
}
footer .footer i {
    font-size: 3em;
    color: var(--evenArtColor);
}

footer .footer i:hover {
    border: 1px solid var(--textColor);
    border-radius: 50%;
}
footer a {
    margin: 5px;
}

footer .footer p {
    text-align: center;
    color: var(--evenArtColor);
}

/* TYPOGRAPHY */

h1,h2,h3,h4.h5 {
    margin: .4em 0 .4em 0;
}
h1 {
    font-size: 2.4em;
}
h2 {
    font-size: 1.8em;
}

a:link, a:visited{
    color:var(--evenArtColor);
    text-decoration: none;
       
}
article .discog a:hover {
    /* border-radius: 50%; */
    display: inline-block;   
  
}

article{
    width: 100%;
    margin:10px auto;
    background: var(--secondaryColor);
    backdrop-filter:var(--bgLessBlur);
    padding: 0;
    max-width: 1140px;
    border: 1px solid var(--borderColor);
    border-radius: var(--borders);
}
article:nth-child(even){
    background-color: var(--primaryColor);
}
article:first-child {
    margin: 134px auto 30px;
    /* border: 1px solid var(--borderColor);
    padding: 10px;
    background-color: var(--secondaryColor); */
}
article .body {
    display: flex;
    flex-flow:row ;
    justify-content: center;
    align-items: center;
}
article .body form {
    display: contents;
}

article .body > div {
    width: 50%;
}

article .body > div h2 {
    text-align: center;
}



article img {
    width: 50%;
    margin: 0;
    padding: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: var(--borders);
    border-bottom-right-radius: var(--borders);
}
article:nth-child(even) img {
    border-top-right-radius: 0;
    border-bottom-right-radius:0;
    border-bottom-left-radius:var(--borders); 
    border-top-left-radius:var(--borders);
}
.body p {
    line-height: 1.4em;
    font-size: 1.2em;
    padding: 10px;

}

article:nth-child(even) .body {
    flex-flow: row-reverse;
   
}
article:last-child {
    margin-bottom: 20px;
}

article div.discog {
    text-align: center;
}
article div.discog img {
    width: 320px;
    -webkit-mask-image: radial-gradient(circle, black 70%, rgb(0, 0, 0, 0) 50%);
    mask-image: radial-gradient(circle, black 70%, rgb(0, 0, 0, 0) 50%);
}

h1,h2,h3,h4.h5 {
    display: block;
    width:100%;
    padding: 10px;
}

article li{
    list-style: none;
    margin-left: 10px;
    display: block;
    padding: 5px;
}

article li a:link, article li a:visited {
    text-decoration: underline;
    text-underline-offset: 5px;
}

article li a:link:hover, article li a:visited:hover {
    background-color: var(--fadedColor);
}

/* BREAKPOINTS */
@media (max-width:892px) {
    .header {
        padding: 1.3rem 5%;
    }
    article img, article:nth-child(even) img  {
        width:100%;
        border-radius: 0;
    }
    article .body, article:nth-child(even) .body {
        flex-flow: column;
    }
    .body p { height:auto };
}

@media (max-width:768px) {
    .icons {
        display: inline-flex;
    }
    article {
        width: 95%;
    }
    article img, article:nth-child(even) img  {
        width:100%;
        border-radius: 0;
    }
    footer {
        height:84px;
    }
    #check:checked~.icons #menu-icon {
        display: none;
    }
    .icons #close-icon{
        display: none;
    }
    #check:checked~.icons #close-icon {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left:0;
        height: 0;
        width: 100%;
        background: var(--fadedColor);
        backdrop-filter: var(--bgblur);
        box-shadow: 0 .5rem 1rem var(--fadedColor);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbar {
        height: 16rem;
    }
    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }
    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }
}