html {
    scroll-behavior: smooth;
}
* {
    border-radius: 0 !important;
}

body {
    font-size: 22px;
    text-align: center;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

nav {
    margin: 0px !important;
    padding: 0px !important;
    border: 0px !important;
    position: fixed !important;
    width: 100% !important;
    background-color: black;
    transition: 0.25s;
    z-index: 1;
}
.nav-item {
    transition: 0.5s;
}
.nav-item:hover {
    background-color: grey;
}
.nav-item > a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}
.menu-icon {
    color:white;
    font-size: 42px;
}

.jumbotron {
    color: white;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../images/appa.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    padding: 0px;
    margin: 0px;
}
.hero-text {
    height: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h1 {
    font-size: 80px;
    margin: 0 30px;
}
.hero-subtext {
    font-size: 30px;
    display: block;
}

.section-container {
    padding: 64px 0;
}
#about {
    background-color: rgb(0, 0, 0);
    color: white
}
#abilities {
    background-color: rgb(252, 163, 17);
}
#projects {
    color: white;
    background-color: rgb(20, 33, 61);
}

h2 {
    font-size: 60px;
    margin-bottom: 40px;
}

h3 {
    font-size: 36px;
    margin-top: 30px;
}

.about_paragraph {
    text-align: left;
}

.container {
    max-width: 1000px;
}
.skill-col {
    text-align: left;
}
.skill-col > ul > li {
    font-size: 20px;
    padding: 5px;
}
.skill-col > ul > li:hover {
    background-color: #F5B247;
}
.skill-col > ul > li:hover .stars{
    transition: 0.2s;
    transform: translate(-10px,0);
}
.stars {
    float: right;
    transition: 0.2s;
}

.project-row {
    margin-bottom: 50px;
}
.project-row > img {
    padding: 0px;
    border: 5px solid white;
}
.article-left {
    text-align: left;
    margin-left: 30px;
}
.article-right {
    text-align: right;
    margin-right: 30px;
}

.contact-button {
    font-size: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

iframe {
    border: none;
}