body {
    overflow: hidden;
    font-family: 'Mona Sans';
}

*::selection {
    background-color: var(--magenta);
    color: white;
}

html, body {
    margin: 0;
    height: 100%;
    color: var(--basic-txt);
}

#contact a {
    text-decoration: none;
    color: var(--basic-txt);
    border-radius: 5px;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
}

#contact a:hover {
    color: var(--white);
    background-color: var(--magenta);
    padding: 5px 10px;
    margin-left: -10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#contact a svg.icon {
    width: 20px;
    aspect-ratio: 1/1;
    padding-right: 5px;
    transition: transform 300ms ease-in-out;
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    -ms-transition: transform 300ms ease-in-out;
    -o-transition: transform 300ms ease-in-out;
}

#contact a:hover svg.icon {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

#contact a:hover svg {
    fill: var(--white);
}
  
.container {
    height: calc(100dvh - 100px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
  
.page {
    height: calc(100dvh - 100px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.info {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 20%;
}

h2 {
    font-size: 2rem;
    font-weight: 100;
    color: var(--magenta);
    padding-bottom: 2rem;
}

p {
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.5;
}

header nav {
    --btns: 5;
    --hgt: min( calc(100dvw / var(--btns)), 100px);
    height: var(--hgt);
    position: absolute;
    bottom: 0;
    width: 100%;
}

header nav ul {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

header nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--magenta);
    aspect-ratio: 1 / 1;
    transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
}

.whatsapp {
    /* background-color: var(--whatsapp); */
}

header nav ul li:hover,
header nav ul li:active {
    background-color: hsl(334 80% 30%);
}

@keyframes btn-hover {
    0%   {  transform: scale(100%) ; -webkit-transform: scale(100%) ; -moz-transform: scale(100%) ; -ms-transform: scale(100%) ; -o-transform: scale(100%) ;
            transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0); -o-transform: rotate(0); }
    15%  {  transform: scale(115%) ; -webkit-transform: scale(115%) ; -moz-transform: scale(115%) ; -ms-transform: scale(115%) ; -o-transform: scale(115%) ;
            transform: rotate(-3deg); -webkit-transform: rotate(-3deg); -moz-transform: rotate(-3deg); -ms-transform: rotate(-3deg); -o-transform: rotate(-3deg); }
    40%  { transform: rotate(5deg); -webkit-transform: rotate(5deg); -moz-transform: rotate(5deg); -ms-transform: rotate(5deg); -o-transform: rotate(5deg); }
    85%  { transform: rotate(-3deg); -webkit-transform: rotate(-3deg); -moz-transform: rotate(-3deg); -ms-transform: rotate(-3deg); -o-transform: rotate(-3deg); }
    90%  { transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0); -o-transform: rotate(0); }
    100% { transform: scale(100%) ; -webkit-transform: scale(100%) ; -moz-transform: scale(100%) ; -ms-transform: scale(100%) ; -o-transform: scale(100%) ; }
  }

header nav ul li:hover a svg {
    animation-name: btn-hover;
    animation-duration: 900ms;
}

header nav ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
}

header nav ul li a img,
header nav ul li a svg {
    height: calc( var(--hgt) / 3);
    aspect-ratio: 1 / 1;
    padding: calc( var(--hgt) / 9);
    fill: white;
}

header nav ul li a span {
    color: white;
    font-size: 0.8rem;
    font-weight: 300;
}

svg#logo {
    height: 65px;
} 

.magenta {
    fill: var(--magenta);
}

.contact {
    width: 100%;
    text-align: center;
}

h1 {
    font-size: larger;
    line-height: 2rem;
    color: var(--magenta);
    /* border: 1px solid blue; */
}

#typewriter {
    font-size: 25px;
    font-weight: 100;
  }
  
.cursor {
    font-size: 25px;
    font-weight: 100;
    /* display: inline-block; */
    animation: blink 1s steps(2, start) infinite;
    -webkit-animation: blink 1s steps(2, start) infinite;
}
  
  @keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
  }



  .iphone-wrapper {
  width: 292px; /* halve scale van je SVG */
  height: 600px;
  margin: 2rem auto;
  /* achtergrondkleur van de iPhone rand */
  background: #e71d73;
  border-radius: 50px; 
  position: relative;
  overflow: hidden;
}


@media only screen and (min-width: 600px) {

    html {
        background-color: var(--secondary);
    }
    
    .wrapper {
        height: calc(50dvw / var(--btns));
        width: 50dvw;
        margin: 0 auto;
        background-color: var(--bg-white);
    }

    header nav {
        width: 50dvw;
        height: calc(50dvw / var(--btns));
    }

    header nav ul li a span {
        font-size: 0.75rem;
    }

}   