:root {
    --blue: #d1ffff;
    --green: #D9FFDF;
    --pink: #ffe7e7;
    --orange: #ffe6d0;
    --violet: #b8faff;
    --x: #e2b1ff;
}

@font-face {
    font-family: FogtwoNo5;
    src: url('./fonts/FogtwoNo5.ttf');
}

@font-face {
    font-family: MAK;
    src: url('./fonts/MAK.otf');
}

@font-face {
    font-family: WorkSans;
    src: url('./fonts/WorkSans-Regular.ttf');
}

* {
    box-sizing: border-box;
}

body,
html {
    width: 100vw !important;
    height: 100vh !important;
}

body {
    font-family: WorkSans;
    font-weight: 500;
    background: linear-gradient(120deg, var(--x), var(--violet) 80%);
    background-position: fixed;
    color: black;
    font-size: 18px;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    background-attachment: fixed;
    background-size: cover;
    letter-spacing: -0.5px;
}

ul {
    margin: 0;
}

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

h1,
h2 {
    font-family: MAK;
}

h3 {
    font-size: 25px;
}

h3,
h4 {
    font-family: FogtwoNo5;
}

.logo {
    position: fixed;
    width: 75px;
    height: 75px;
    top: 10px;
    left: 10px;
    opacity: 0.7;
    filter: hue-rotate(275deg);
    z-index: 100000;
}

nav {
    position: fixed;
    /* width: 100%; */
    z-index: 1000000;
    height: 100px;
    top: 0;
    left: 0;
}

nav ul {
    list-style-type: none;
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    mix-blend-mode: difference;
    z-index: 100000;
}

nav ul li {
    margin-right: 20px;
}

header {
    padding-top: 50px;
    /* background-color: rgba(255, 255, 255, 0.3); */
}

.me {
    max-width: 350px;
    border-radius: 25px;
    box-shadow: 5px 5px 40px 10px rgba(0, 0, 0, 0.1);
}

.button {
    padding: 10px 15px;
    max-width: 300px;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    background: linear-gradient(-90deg, rgb(208, 151, 255), rgb(89, 255, 213));
    position: relative;
    z-index: 1;
    font-family: FogtwoNo5;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 5px 5px 40px 10px rgba(0, 0, 0, 0.185);
    transition: all .4s;
}

.button:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: all .4s;
}

footer ul {
    list-style-type: none;
}

.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    padding: 30px;
    width: 30%;
    border-radius: 15px;
    border: 0;
    box-shadow: 5px 5px 60px 10px rgba(0, 0, 0, 0.1);
    transition: all .4s;
    margin-bottom: 30px;
}

.card-title {
    text-align: center;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-text {
    font-size: 16px;
}

.card:hover {
    transform: scale(1.01) translate3d(0, 0, 0) perspective(1px);
    -webkit-font-smoothing: antialiased;
    transition: all .4s;
}

.hidden-xs {
    display: none !important;
}

@media only screen and (max-width: 1000px) {
    .me {
        width: 75%;
    }
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 95%;
        margin-bottom: 35px;
    }
    .footer {
        flex-direction: column !important;
        align-items: center;
    }
    .footer li {
        margin-bottom: 15px;
    }
    .button {
        max-width: 90%;
    }
    .hidden-lg {
        display: none !important;
    }
    .hidden-xs {
        display: block !important;
    }
}

.bold {
    font-weight: bold;
}

.card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 45px;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

footer,
section {
    position: relative;
    z-index: 1;
}

footer,
ul {
    font-size: 20px;
}

footer a {
    border-bottom: 1px solid rgb(0, 49, 33);
}

u {
    font-weight: bold;
}

.image-cropper {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.cropped-img {
    display: inline;
    margin: 0 auto;
    margin-left: -25%;
    height: 100%;
    width: auto;
}