* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', sans-serif;
}

header {
    background-color: #171810;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); 
    position: fixed;
    top: 0%;
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 75px;
}

#logo {
    width: 75px;
    margin-left: 30px;
}

nav > ul {
    text-align: center; 
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav > ul > li {
    margin-right: 30px;
}

a {
    text-decoration: none;
    color: white;
}

#h1-projects {
    margin: 75px auto 0 auto;
    text-decoration: underline;
    font-size: 35px;
    color:#07CC5B;
}

main {
    
}

#welcome-section {
    width: 100vw;
    height: 100vh;
    background-color: #292A2C;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#welcome-text {
    text-align: center;
    align-items: center;
    margin: 0 auto 0 auto;

}

#h1-welcome {
    color: white;
    font-size: 45px;
    margin-bottom: 0px;
}

#p-welcome {
    margin-top: 10px;
    color: #07CC5B;
    font-size: 25px;
}

#projects {
    background-color: #171810;
    color: white;
    width: 100vw;
    height: 200vh;
    display: flex;
    flex-direction: column;
}

.cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 100px 0 100px;
}

.card-projects {
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 75px 0 0 0;
    border: 3px solid #07CC5B;
    border-radius: 10px;
}

.card-img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

.card-bottom {
    background-color: #292A2C;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.text-card {
    font-size: 20px;
    color: #07CC5B;
}

#show-all-button {
    width: 175px;
    height: 50px;
    margin: 60px auto 50px auto;
    font-size: 18px;
    font-family: Helvetica;
    border-radius: 25px;
    color: #07CC5B;
    background-color: #292A2C;
    text-transform: uppercase;
    border: 2px solid #07CC5B;
    
}

#social-work {
    width: 100vw;
    height: 100vh;
    background-color:#292A2C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#h1-socials {
    color: white;
    font-size: 50px;
    margin-bottom: 10px;
}

#p-socials {
    color: #07CC5B;
    font-size: 20px;
    margin-top: 0px;
}

#profile-link {
    color: white;
}

.profiles-social {
    display: flex;
    align-items: center;
    justify-content: center;
}

#profile-link {
    margin: 40px 15px 25px 15px;
    font-size: 25px;
}

#green-line {
    border: 5px solid #07CC5B;
    margin: 0px;
}

.footer-port {
    width: 100vw;
    height: 15vh;
    background-color: #171810;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#created-by {
    color: white;
    margin-right: 180px;
}

#email {
    color: white;
    margin-left: 180px;
}

@media screen {
    
}