@font-face {
    font-family: myFirstFont;
    src: url(font/Strongarm.otf);
}
* {
    padding: 0;
    margin: 0;
    font-family: myFirstFont;
    color: var(--blue2);
    text-shadow: 4px 4px var(--yellow2), -4px -4px var(--yellow2), -4px 4px var(--yellow2), 4px -4px var(--yellow2);
}

:root {
    --blue: #0074b8;
    --blue2: #004E7A;
    --yellow: #f0b905;
    --yellow2:#cc9e1f;
}

.bot {
    position: fixed;
    bottom: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-color: var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(assets/achtergrond.png);
    background-size: 110vw;
}

#logo {
    background-image: url(assets/icon2.png);
    width: 500px;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#npo3 {
    background-image: url(assets/npo3.png);
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#yt {
    background-image: url(assets/yt.png);
    width: 150px;
    height: 150px;
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: center;
}

#p1 {
    transform: none;
}

main {
    margin: 30px;
    width: 80vw;
    height: 70vh;
    background-color: var(--yellow);
    border: 8px solid black;
    border-radius: 40px;
    background-size: 100vw;
    background-position: center;
    background-repeat: none;
    box-shadow: var(--yellow2) 10px 10px, black 10px 10px 0px 1px;

    position: fixed;
    top: 10px;

    transform: translateX(200%);
    transition-duration: 0.5s;
}

.but-a {
    background-color: var(--yellow);
    color: black;
    text-shadow: none;
    width: 200px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid black;

    font-size: 40px;

    cursor: pointer;
    box-shadow: var(--yellow2) 10px 10px 10px;

    background-image: url(assets/texture.png);
    background-size: 70px;
}

.but-a:hover > .hand {
    opacity: 1;
    transform: translateX(50%);
}

.hand {
    width: 100px;
    height: 100px;
    background-image: url("assets/gele\ hand.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    transition-duration: 0.3s;


    position: fixed;
    opacity: 0;
}

h1 {
    font-size: 200px;
}

h2 {
    font-size: 100px;
}

h3 {
    font-size: 50px;
    
}

h4 {
    font-size: 50px;
    margin: 50px;
}

table {
    width: 80%;
    height: 80%;
}

th {
    font-size: 40px;
    border-bottom: 10px solid var(--blue);
    width: 200px;
    height: 100px;
}

td {
    font-size: 25px;
    color: white;
    text-shadow: none;
}

.cent {
    text-align: center;
    font-size: 50px;
    text-decoration: underline;
}