html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,
cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,
nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,
q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*begin style code*/
body {
    font-family: sans-serif;
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(125.55deg, #4C3F91 33.42%, #9145B6 58.59%, #B958A5 79%, #FF5677 100%);
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home {
    height: 100%;
}

/*header en onderdelen begin vv*/
header {
    position: sticky;
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
    border-bottom: 2px solid black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo {
    background-color: orange;
    border-radius: 50%;
    width: 7%;
    margin-left: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    aspect-ratio: 1/1;
}

.jg {
    font-family: "Tilt Prism", sans-serif;
    font-weight: 400;
    font-size: 120%;
    padding: 5%;
    box-sizing: border-box;
}

nav {
    height: 50%;
    margin-right: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5%;
}

.button {
    height: 60px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border: black solid 2px;
    border-radius: 50px;
    font-size: 25px;
    box-shadow: 0px 6px 5px black;
}

a {
    text-decoration: none;
    color: black;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.enabled:hover {
    background: rgb(200, 200, 200);
    cursor: pointer;
}

.enabled:active {
    box-shadow: 0px 2px 5px black;
    transform: translateY(4px);
}

/*header en onderdelen eind ^^*/
/*hoofd pagina contentVV*/
section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.container {
    display: grid;
    justify-items: center;
}

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

.images {
    padding: 1%;
    gap: 5%;
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

h2 {
    font-family: "Tilt Prism", sans-serif;
    font-size: 60px;
    font-weight: 100;
    color: white;
}

.introduction{
    font-size: 50%;
    width: 50%;
}

img {
    width: 75px;
    height: 75px;
}

.contact {
    text-decoration: underline;
    width: 25%;
    font-size: large;
    display: flex;
    gap: 2%;
    justify-content: space-between;
    align-items: center;
}

.github {
    width: 25%;
}
/* hoofdpagina einde */
.card {
    height: 40%;
    width: 28%;
    background-color: lightgray;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 6px 5px black;
}

.card:hover {
    scale: 1.1;
    translate: 0px 25px;
    transition: 500ms;
}

.card-titel {
    height: 25%;
    width: 100%;
    text-align: center;
    color: black;
}

.card-stuff {
    height: 75%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.text-container {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.card-text {
    font-size: medium;
}

.card-preview {
    height: 75%;
    width: 50%;
    border-radius: 20px;
    background-color: #00FF95;
}