*{
    margin: 0;
    padding: 0;
}

a{
    line-height: 0%;
}

@font-face {
  font-family: 'Karmatic Arcade';
  src: url('/Assets/fonts/ka1.ttf');
}
@font-face {
  font-family: 'Coolvetica';
  src: url('/Assets/fonts/CoolveticaRg.otf');
}

.material-symbols-outlined{
    display: none;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: "Coolvetica";
    background-color: black;
}

header{
    font-size: 4rem;
    padding: 3rem;
    background-color: black;
    display: flex;
}
header a{
    color: rgb(253, 132, 62);
    margin: 1rem;
}
header a:visited{
    color: rgb(253, 132, 62);
}
header a:hover{
    color: rgb(255, 186, 146);
}


main .HorizontalLine{
    border: solid;
    color: rgb(253, 132, 62);
}

.Home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 2.5rem;
    color: rgb(253, 132, 62);
    font-family: "Karmatic Arcade";
    padding: 2rem;
    background-image: url("../Assets/Pictures/ArcadeBackground.jpg");
}
.Home .HorizontalBar{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.633);
}

.Home .HorizontalBar .HorizontalLine{
    border: solid;
    width: 40%;
    margin: 2rem;
    color: rgb(181, 95, 45);
}

.Home h1{
    font-size: 5em;
}
.Home a{
    color: rgb(253, 132, 62);
}
.Home a:visited{
    color: rgb(253, 132, 62);
}
.Home a:hover{
    color: rgb(255, 186, 146);
}

.Info{
    font-size: 2.5rem;
    padding: 2rem;
    height: 100vh;
    display: flex;
    background-color: rgb(0, 0, 0);
}

.Info article{
    margin: 5rem;
    background-color: rgb(181, 95, 45);
    width: 40%;
    padding: 2rem;
}

.Info .VerticalLine{
    height: 100%;
    color: rgb(253, 132, 62);
    border: solid;
    margin-left: 2rem;
    margin-right: 2rem;
}
.Info img{
    margin: 10rem;
}

footer{
    font-size: 2rem;
    padding: 2rem;
    background-color: rgb(9, 31, 54);
    display: flex;
    align-items: center;
    flex-direction: column;
    color: rgb(253, 132, 62);;
}

footer .ContactInfo{
    display: flex;
    align-items: center;
}

footer .ContactInfo .VerticalLine{
    height: 10rem;
    border-color: black;
    border: solid;
    margin-left: 2rem;
    margin-right: 2rem;
}

footer .HorizontalLine{
    border: solid;
    width: 80%;
    margin: 2rem;
    color: rgb(253, 132, 62);;
}

#FotoBoekHome{
    background-image: url("../Assets/Pictures/ArcadeBackground2.png");
    background-size: cover;
}

.FotoBoek{
    background-color: black;
}

.FotoBoek div{
    display: flex;
    flex-wrap: wrap;
}

.FotoBoek div img{
    max-width: fit-content;
    max-height: 20vw;
    object-fit: cover;
}

@media only screen and (max-width: 1400px){
    .Info{
        padding: unset;
        height: unset;
        display: unset;
    }
    .Info article{
        width: initial;
        margin: 2rem;
    }
    .Info img{
        display: none;
    }
    .Info .VerticalLine{
        display: none;
    }
}

@media only screen and (max-width: 1000px){
    .material-symbols-outlined{
        display:block
    }
    header{
        gap: 1rem;
    }
    header a h3{
        display: none;
    }
    .Home{
        font-size: 1rem;
    }
    .FotoBoek div img{
        min-width: 50vw;
        max-width: 50vw;
        max-height: fit-content;
        object-fit: cover;
    }
}