html,
body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    font-family: sans-serif;
    overflow: hidden;
}

h1,
h2,
h3,
p,
a {
    margin: 0;
    text-decoration: none;
    color: white;
}

body {
    background: linear-gradient(0deg, rgb(255 0 151 / 21%), rgb(255 255 255 / 81%)), url(background.png);
    background-size: cover;
    background-position: center;
}

.content {
    width: 70vw;
    height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
}

.logo {
	max-width: 100%;
    height: 100%;
	background: url('/logo.png');
    background-position: center;
	background-repeat: no-repeat;
	background-size: 70%;
}

.selection {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 12.5%;;
}

.option {
    width: 75%;
    height: 30%;
    background: #a2106e;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
	opacity: 0.9;
}

.option:hover{
    background: #8d0b60;
}

.option h1{
    font-size: 18px;
    text-align: center !important;
}

.zoom{
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.05);
    cursor: pointer;
  }


/* Tablet */

@media screen and (max-width: 992px) {
    .option h1 {
        font-size: 10px;
    }
}


/* Mobiel */

@media screen and (max-width: 600px) {
    .content{
        grid-template-rows: 40% 60%;
    }
    .logo {
        background-size: contain;
    }
    .selection {
        height: 80%;
        display: grid;
        grid-template-columns: 100%;
    }
    .option h1 {
        font-size: 15px;
    }
    .option{
        width: 80%;
        margin: 0 auto;
        height: 50%;
    }
}