@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

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

html{
    background: url('../img/Wallpaper.png') no-repeat center center fixed;
}

html, body {
    height: 100vh;  
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    overflow-x: hidden; 
}

/* <== Links sectie ==> */
.flex-container {
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
}

.share-btn {
    background-color: white;
    padding: 0.65rem 0.8rem;
    border-radius: 50%;
}

.share-btn:hover {
    cursor: pointer;
}

#share-link {
    justify-content: flex-end;
    align-items: center;
    margin: 1rem;
}

.links-container i {
    margin-right: 5px;
}

.links-container {
    padding: 1rem 0.75rem;
    list-style-type: none;
    margin: 0 auto;
    max-width: 80%; 
}

.links-container li {
    text-align: center;
    margin: 1rem 0;
    margin-bottom: 25px;
}

/* <== Profiel sectie ==> */
#profile-picture {
    border: 2px solid white;
    display: block;
    width: 130px;
    margin: 1rem auto;
    z-index: 999;
    border-radius: 50%;
}

.profile > h1,
.profile > h2 {
    text-align: center;
    color: white;
}

.profile > h1 {
    font-size: 1.25rem;
}

.profile > h2 {
    font-weight: 400;
    font-size: 1rem;
}

.nav-link {
    display: block;
    border-radius: 2rem;
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 10px 10px black;
    font-weight: 600;
}

@media (min-width: 768px) {
    main {
        max-width: 750px;
        margin: 0 auto;
    }
    body{
      overflow-x: hidden;
    }
}

/* <== Hover animatie ==> */
.card {
    border-radius: 1.25rem;
}

.hover {
    animation: 1s button2 ease-in-out forwards;
    color: grey;
}

.hover a {
    color: rgb(222, 220, 220);
}

.noHover {
    animation: 1s button3 ease-out;
}

.card,
.card a {
    background-color: hsl(349 100% 95%);
    color: hsl(320, 40%, 40%);
}

img.icon {
    width: 20px;
    height: 20px;
}

.glow {
    --contain-offset: 100px;
    --stroke-color: hsl(182, 99%, 41%);
    --transition-time-in-ms: 2000ms;
    --blur-radius: 0px;
    position: relative;
}

.glow__contain {
    position: absolute;
    inset: calc(var(--contain-offset) / -2);
    width: calc(100% + var(--contain-offset));
    height: calc(100% + var(--contain-offset));
    pointer-events: none;
}

.glow__blur,
.glow__outline {
    width: calc(100% - var(--contain-offset));
    height: calc(100% - var(--contain-offset));
    x: calc(var(--contain-offset) / 2);
    y: calc(var(--contain-offset) / 2);
    rx: 1.25rem;
    fill: transparent;
    stroke-width: 5px;
    stroke: var(--stroke-color);
    stroke-dasharray: 20px 30px;
    transition: stroke-dashoffset var(--transition-time-in-ms);
}

.glow:hover .glow__blur,
.glow:hover .glow__outline {
    stroke-dashoffset: -65px;
}

.glow__blur {
    filter: blur(var(--blur-radius));
}

@keyframes button {
    0% {
        border-radius: 0;
    }
    50% {
        border-radius: 100vw;
    }
    100% {
        border-radius: 1vw;
    }
}

.area {
    width: 100%;
    height: 100vh;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 775px;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.icon-right {
    margin-left: 8px;
}

.icon-left {
    margin-left: 10px;
}

#share-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.share-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.share-btn:hover {
    background-color: #01CBD2;
}

.share-btn i {
    font-size: 1.5rem;
}

#typing-effect {
    height: 1.5em; 
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#typing-effect {
    max-width: 90%; 
    margin: 0 auto; 
    padding: 0 10px; 
}

@media (max-width: 768px) {
    #typing-effect {
        max-width: 95%; 
        padding: 0 5px; 
    }
}