@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Nunito:wght@300&display=swap');

/*1. ALGEMEEN*/
/*Verwijder alle margins en paddings by default*/
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #e9fffe;
}

a {
    text-decoration: none;
}

input {
    background-color: #e5fff8;
}

.wrapper {
    margin: 15rem auto;
    max-width: 1440px;
    min-height: 1000px;
    z-index: 5;
}

h1 {
    line-height: 2.5rem;
}

h1,
h2 {
    color: #008080;
    font-family: 'Bungee', sans-serif;
    font-weight: 1;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.2rem;
}

ul,
p {
    color: #008080;
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
}

.button {
    font-family: 'Nunito', sans-serif;
    width: 7rem;
    text-align: center;
    background-color: #008080;
    color: white;
    padding: 12px 20px 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 500ms;
    display: block;
}

.button:hover {
    color: #00c4c4;
}

.labels {
    color: #008080;
    font-family: 'Bungee', sans-serif;
    font-weight: 1;
    font-size: 1rem;
}

/*CUSTOM SCROLLBAR*/
::-webkit-scrollbar {
    width: 12px;

}

/* Track */
::-webkit-scrollbar-track {
    background: #e9fffe00;
    border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #008080;
    border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #008080;
}


#download-container {
    display: grid;
    place-items: center center;
    margin-top: 3rem;
}

#resume-thumbnail {
    object-fit: contain;
    width: 12rem;
}

#download-cv {
    color: white;
    font-family: arial;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    width: 12rem;
    display: block;
    text-align: center;
    margin-top: 1rem;
    background-color: #008080;
    transition: all 200ms ease-in-out;
}

#download-cv > img {
    height: 1rem;
    object-fit: contain;
}

#download-cv:hover {
    background-color: #00c4c4;
}


@media only screen and (max-width: 1000px) {
    .button {
        width: 20rem;
        font-size: 3rem;
        margin-top: 2rem;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .wrapper {
        width: 100%;
        padding: 0;
    }

    /*
    /* Hide scrollbar for IE, Edge, and Firefox 
    body {
        -ms-overflow-style: none; 
        scrollbar-width: none;  
        overflow: hidden; 
    }
*/

}