html {
    background-color: #ffffff;
    height: 100vh;
}

body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    font-size: 3.9vw !important;
}

h3 {
    font-size: 33px !important;
    font-weight: 600 !important;
    color: #125a53;
}

h4 {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.person-bg {
    background-image: url("images/erik.png");
    background-size: cover;
    background-position: center;
}

.glass-bg {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.skill-item:hover > svg {
    fill: #ffffff;
}

.slide-in-blurred-top {
    -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: slide-in-blurred-top 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/* media query */

@media screen and (max-width: 1271px) {
    .l-side-section {
        display: none !important;
    }
    .small-screen-item {
        padding: 25px !important;
    }
}

/* Animations */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
