* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

html {
    background-color: #f5f5f5f5;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    margin: 0;
    padding: 0;
}

ul.cycle-buttons {
    position: fixed;
    top: 20px;
    width: 100%;
    text-align: center;
}

ul.cycle-buttons li {
    display: inline;
    padding: 0 10px;
  }

ul.cycle-buttons li a {
    cursor: pointer;
    color: white;
    font-family: "Poppins";
    font-size: .8rem;
    font-weight: 900;
    background-color: #DCB16A;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
}

ul.cycle-buttons li a:hover {
    background-color: #DCB16A;
}


/* 
    Heading styling
    ?Dit is de styling voor de header, dus de titel en de subtitel van de pagina.
*/
header h1 {
    font-family: 'Poppins';
    margin: 0;
    color: #ffff;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
}

header p {
    font-style: italic;
}



ul.socials {
    margin: 50px 0;
    list-style-type: none;
    width: 100%;
    text-align: center;
    list-style: none;
    margin-bottom: 5rem;
}

ul.socials li {
    display: inline;
    padding: 0 10px;
}



h2 {
    font-family: 'Poppins';
    margin: 0;
    color: #DCB16A;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 1rem 0rem;
}

button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: auto;
    height: 2.5rem;
    padding: .25rem;
    border: none;
    background-color: #ffffff00;
    transition: .25s;
    cursor: pointer;
    color: white;
    font-family: "Poppins";
    font-size: .8rem;
    font-weight: 900;
}

button .fa-angles-right,
button .fa-angles-left {
    font-size: .8rem;
}

button:hover {
    margin-right: 5px;
}



img {
    position: relative;
    top: 2rem;
    width: 10em;
    height: auto;
    border: 5px solid #fff;
    border-radius: 10em;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .2);
}

dl {
    font-family: 'Poppins';
    color: white;
    width: 100%;
    margin-top: 1rem;
    padding: 2rem 0;
    text-align: center;
    background: #DCB16A;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .2);
}


/* normale text styling */

p {
    font-family: 'Poppins';
    margin: 0;
    padding: 0 50px;
    color: white;
}


/* grootte van de kaart */

.card {
    margin: 100px auto 20px;
    width: 400px;
    height: 600px;
    perspective: 1000px;
}

.card_inner {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    position: relative;
}


.card.turned .card_inner {
    transform: rotateY(180deg);
}

section {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, .1);
    border-radius: 1rem;
    background-color: #1A1C1D;
    display: flex;
    flex-direction: column;
}

.front {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #bf995b 100%), url(../assets/me.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: end;
}

.front,
.back {
    display: flex;
    align-items: center;
}

.back {
    justify-content: center;
}

.front h2 {
    color: #FFF;
    font-size: 40px;
}

.back {
    transform: rotateY(180deg);
}


/* icons */

i {
    color: white;
    padding: 0 20px;
    font-size: 30px;
}

a i {
    transition: 0.3 ease-in-out;
}

a:hover i {
    color: #cacaca;
    transition: 0.3 ease-in-out;
    /* animatie voor socials */
    animation-name: shake;
    animation-duration: 0.5s;
}

button i {
    font-size: 20px;
    padding: 0;
}