* {
    padding: 0;
    margin: 0;
}

.home {
    margin-top: 10em;
    margin-bottom: 10em;
    margin-left: 8.5em;
    margin-right: 8.5em;
}

@media only screen and (max-width: 768px) {
    .home {
        margin-left: 1em;
        margin-right: 1em;
    }
}

body {
    position: relative;
    background-color: #FFFFFF;
}

.navbar {
    padding-left: 8.5em;
    padding-right: 8.5em;
}

@media only screen and (max-width: 768px) {
    .navbar {
        margin-left: 0;
        margin-right: 0;
        padding-top: 1em;
        padding-left: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
}

.navbar-brand {
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 800;
    font-style: normal;
}

.nav-item {
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1 {
    font-family: montserrat, sans-serif;
    font-weight: 800;
    font-style: normal;
}

p {
    font-family: montserrat, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 2em;
}

.floating {
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    50% {
        transform: translateY(1rem);
        -webkit-transform: translateY(1rem);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

.embed-responsive-item {
    border-radius: 1em;
}

#works {
    position: relative;
}

#works::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 95%;
    top: 0;
    left: 0;
    background-color: #222222;
    transform-origin: top left;
    transform: skewY(-7deg);
    z-index: -10;
}

.works {
    margin-top: -25%;
}

h2 {
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1em;
    font-size: 1.5em;
}

h3 {
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1em;
}

h4 {
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
}

.showcase_container {
    margin-top: 25%;
}

.showcase {
    background-color: #FFFFFF;
    border-radius: 0.5em;

}

.showcase .image {
    border-top-right-radius: 0.5em;
    border-top-left-radius: 0.5em;
}

#contact {
    padding-top: 15%;
    margin-bottom: 10vh;
}
