* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    color: #FFF;
    background: transparent;
    border: none;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
}

.title-wrapper {
    height: 50vh;
    width: 96vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.title {
    font-size: clamp(60px, 5vw, 100px);
    user-select: none;
}

.intro-text {
    font-size: 20px;
    text-align: justify;
}

#bold {
    font-weight: bold;
}

.content-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: auto;
    user-select: none;



    a {
        color: #fff;
    }

    .link-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 50px;
        padding: 100px 50px;
        font-size: clamp(10px, 100%, 20px);
    }

    .link-wrapper-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vh;
    }

    .link-wrapper-item:hover .link-wrapper-text {
        text-decoration: underline 0.5px solid;
    }

    .link-wrapper i {
        font-size: 50px;
        padding: 5px;
        transition: all 0.2s ease-in-out;
    }

    .link-wrapper-item:hover i {
        font-size: 60px;
        padding: 0;
        transition: all 0.2s ease-in-out;
    }

    #mail-text {
        user-select: text;
    }
}

@media screen and (max-width: 840px) and (min-width: 611px) {
    .intro-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 610px)  and (min-width: 481px) {
    .content-wrapper {
        .link-wrapper {
            padding: 50px 0;
        }
    }

    .intro-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .intro-text {
        font-size: 16px;
    }
}

