@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    color: white;
    text-decoration: none;
}

/* Header */
header {
    background-color: #000000;
}

.navbar {
    color: white;
}

.nav-container {
    position: fixed;
    top: 0px;
    background-color: black;
    width: 100%;
    z-index: 1;
}

#logo {
    list-style: none;
    font-size: 35px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    margin: 15px 0;
}

.navbar ul li {
    list-style: none;
    padding: 14px 10px;
    font-size: 18px;
    margin-top: 15px;
}

.navbar ul li a:hover {
    color: wheat;
}

.container {
    margin-top: 60px;
}

.left {
    margin-top: 50px;
}

.para {
    font-size: 25px;
    color: #c99544;
}

.left h1 {
    font-size: 65px;
    font-family: 'Lato', sans-serif;
}

.para2 {
    font-size: 22px;
    word-spacing: 2px;
    margin-top: 40px;
    font-family: 'Ubuntu', sans-serif;
}

.right {
    margin-top: -30px;
    margin-left: 7px;
}

.right img {
    height: 500px;
    margin-top: 10px;
}


#icon {
    display: none;
}

/* Header */

/* Main */

/* skills */
.skills {
    margin: 60px 0;
}

.b-t {
    background-color: #c99544;
    border-radius: 10px;
    width: 100px;
    height: 8px;
}

.skills h1 {
    font-size: 50px;
    font-family: 'Lato', sans-serif;
}

.skills ul {
    flex-wrap: wrap;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
}

.skills ul li {
    list-style: none;
    padding: 10px;
    border: 3px solid #c99544;
    border-radius: 5px;
    margin: 5px;
}

.tag-line {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
}

/* skills */

/* about */
#about {
    background-color: black;
    z-index: -1;
    padding-top: 100px;
}

.left-about {
    padding-top: 40px;
    padding-left: 150px;
}

#about img {
    height: 500px;
    border-right: 4px solid #c99544;
    border-bottom: 4px solid #c99544;
    padding-right: 20px;
    padding-bottom: 20px;
}

.right-about {
    margin-left: 50px;
    margin-right: 40px;
    padding: 5px;
}

.right-about h1 {
    color: #000;
    text-shadow: -1px -1px 0 #c99544, 1px -1px 0 #c99544, -1px 1px 0 #c99544, 1px 1px 0 #c99544;
    font-size: 65px;
    font-weight: 800;
    stroke-width: 3;
    letter-spacing: 2px;
    font-family: 'Mulish', sans-serif;
}

.right-about h2 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.intro {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    word-spacing: 2px;
    padding-left: 20px;
    line-height: 1.4;
    border-left: 5px solid #c99544;
}

.intro-2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    word-spacing: 2px;
    padding-left: 20px;
    line-height: 1.4;
    margin-top: 10px;
}

.line-2 i {
    background-color: #c99544;
    padding: 5px;
    border-radius: 2px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.line-3 i {
    background-color: #c99544;
    padding: 5px;
    border-radius: 2px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.icon-cont-left {
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.icon-cont-left p {
    padding-right: 5px;
}

.icon-cont-left i {
    font-size: 30px;
}

/* about */
/* Projects */
#projects {
    padding-top: 80px;
    margin-bottom: 80px;
}

#projects h1 {
    font-size: 50px;
    font-family: 'Lato', sans-serif;
}

.cards {
    font-family: 'Lato', sans-serif;
    margin-top: 40px;
}

.card-image-top {
    width: 18rem;
    height: 14rem;
    border-radius: 5px;
}

.card-body {
    width: 18rem;
}

.card-body h2 {
    padding: 8px 0;
}

.card-body p {
    padding-bottom: 12px;
}

/* Projects */

/* Contact */
#contact {
    padding-top: 100px;
    background-color: black;
    font-family: 'Lato', sans-serif;
}

#contact h1 {
    color: white;
    font-size: 50px;
    padding: 10px;
    border-top: 5px solid #c99544;
    border-bottom: 5px solid #c99544;
    font-family: 'Mulish', sans-serif;
}

form input {
    width: 700px;
    border-radius: 5px;
    padding: 5px;
    font-size: 15px;
    margin: 5px;
}

form textarea {
    width: 700px;
    font-size: 15px;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

form button {
    width: 70px;
    margin: 5px;
    padding: 5px;
}

/* Contact */

/* Main */

/* footer */
footer {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
}

/* footer */