.body{
    background-color: black;
    background-image: url(../img/background.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: "roboto";
}

.secondary__background{
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-image: url("../img/background2.png");
    background-size: 150%;
    opacity: 0.6;
    background-position-y: 0;
    background-position-x : center;
}

.hidden{
    display: none;
}

.container{
    padding-top: 10vh;
    height: 80vh;
    position: relative;
    z-index: 100;
}

.row{
    width: 90%;
    margin-left: 5% !important;
    height: 100%;
    background-color: rgba(168,46,71,0.85);
    border-radius: 35px;
}

.buttons{
    text-align : right;
    padding: 24px 24px 0px 0px;
}

.header{
    position : relative
}

.logo__fr, .logo__nl{
    height: 180px;
    width: 180px;
    position: absolute;
    top: -70px;
    left: -70px;
}

a{
    color: white !important;
}

.button{
    display: inline-block;
    background : none;
    border : 2px dashed white;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    height: 60px;
    width: 60px;
}

.button:hover{
    background-color: white;
    color: rgba(168,46,71,1);
}

.button:first-child{
    margin-right: 8px;
}

.h1{
    font-size: 96px !important;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 12px black;
    margin-bottom: 48px !important;
    letter-spacing: 8px;
}

.content__container{
    text-align: center;
}

.closed, .contact{
    color: white;
    margin-bottom: 48px;
    width: 80%;
    margin-left: 10%;
}

.closed{
    margin-bottom: 72px;
}

.closed span, .contact span{ 
    display: block;
}

.closed span:first-child, .contact span:first-child{ 
    font-weight: bold;
    font-size: 42px;
    text-shadow: 0px 0px 12px black;
    margin-bottom: 16px;
}

.closed span:nth-child(2), .contact span:nth-child(2){ 
    font-weight: bold;
    font-size: 28px;
    text-shadow: 0px 0px 12px black;
}

.button{
    height: 48px;
    width: 48px;
}

/*
####################################################
M E D I A  Q U E R I E S
####################################################
 
 
/* Small devices (portrait phones, 576px and up) */
@media (max-width: 767px) {  
    .body{
        background-position-x: 55%;
        background-size: cover;
    }

    .secondary__background{
        background-position-x: 50%;
        background-size: 100% 75%;
        background-repeat: no-repeat;
    }

    .h1{
        font-size: 48px !important;
        margin-top: 16px !important;
    }

    .buttons{
        padding: 16px 8px 0 0;
    }

    .logo__nl, .logo__fr{
        height: 100px;
        width: 100px;
        top: -40px;
        left: -40px;
    }

    .closed span:first-child, .contact span:first-child{ 
        font-size: 16px;
    }

    .closed span:nth-child(2), .contact span:nth-child(2){ 
        font-size: 14px;
    }

    .closed{
        margin-bottom: 48px;
    }
}
 

@media (min-width : 768px ) and (max-width: 1026px) {  
    .body{
        background-position-x: 50%;
        background-position-y: center;
        background-size: cover;
    }

    .secondary__background{
        background-position-x: 50%;
        background-size: 100% 75%;
        background-repeat: no-repeat;
    }

    .h1{
        font-size: 60px;
    }

    .closed span:first-child, .contact span:first-child{ 
        font-size: 30px;
    }

    .closed span:nth-child(2), .contact span:nth-child(2){ 
        font-size: 20px;
    }

    .closed{
        margin-bottom: 90px;
    }

    .button{
        height: 60px;
        width: 60px;
    }
}