@import url('https://fonts.googleapis.com/css2?family=Raleway');

*{
    margin: 0;
    padding: 0;
}

:root {
    --white: #FFF;
    --dark1: #34344E;
    --dark2: #3A415A;
    --dark3: #566981;
    --dark4: #89A7B1;
    --dark5: #CBDAD5;
    --dark6: #2F2F46;
    --cyan1: #70E3EA;
}

body {
    background-color: var(--dark1);
    height: 100vh;
    font-family: "Raleway", sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .8rem;
    background-color: var(--dark6);
    min-height: 50px;
}

.box-img-header {
    height: 100%;
}

.img-logo {
    max-width: 60px;
    height: 100%;
}

nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    text-decoration: none;
    color: var(--white);
}

.nav-links:hover {
    color: var(--dark4);
    transition: .4s;
    text-decoration: underline;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section { 
    padding: 4rem;
}

.first-section {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    min-height: 650px;
}

.link-action {
    padding: .6rem;
    font-size: .9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: .4s;
    
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);

    text-decoration: none;
    width: 200px;
    text-align: center;
}

.first-section > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

.first-section p {
    color: var(--white);
}

.box-img-main {
    max-width: 450px;
    padding: 1rem;
}

.img-profile {
    border-radius: 50%;
    width: 100%;

}

h1 {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 8px;
}

strong {
    color: var(--cyan1);
}

.second-section, .fourth-section {
    background-color: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.second-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.second-section ul li  {
   color: var(--dark4);
   letter-spacing: 2px;
   font-weight: bold;
   
}

.second-section ul li:hover {
    color: var(--dark5);
    transition: .4s;
    cursor: default;
}

.title {
    color: var(--dark5)
}

.third-section { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.third-section div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.third-section p {
    width: 100%;
    text-align: justify;
    padding: 20px;
    box-sizing: border-box;
    color: var(--dark5);
}

#my-project-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

#my-project-list a {
    text-decoration: none;
    color: var(--dark4);
}

#my-project-list a:hover{
    color: var(--dark5);
    transition: .4s;
    cursor: pointer;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer > div {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
