@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto' , sans-serif;
}
:root{
    --background-color: #000
}

body{
    background-color: var(--background-color);
}

header{
    margin: 1rem 0;
    border-bottom: 0.5px solid #c9c9c9;
}

header .title{
    margin: 4rem;
    display: flex;
    justify-content: space-between;
}

header .title .murilo{
    text-decoration: none;
    color: #97EDAA;
}

.titles{
    gap: 2rem;
    display: flex;
    width: 30rem;
}
.titles a{
    color: white;
    text-decoration: none;
    display: block;
    align-items: center;
    justify-content: center;
}

.primeiro{
    display: flex;
    justify-content: space-between;
    margin: 6rem;
}

.primeiro .name{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.primeiro .name .desenvolvedor{
    color: white;
    font-weight: normal;
}

.primeiro .name .santos{
    color: #97EDAA;
    font-size: 3rem;
}

.primeiro .name a{
    margin-top: 15px;
    text-decoration: none;
    background-color: #97EDAA;
    padding: 10px;
    border-radius: 10px;
    color: black;
}

main{
    margin-top: 50px;
}

main .text{
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

main .text h1{
    color: #97EDAA;
    font-size: 1.5rem;
}

main .text h2{
    color: white;
    font-size: 1rem;
    width: 1000px;
    text-align: center;
}

main .icons{
    margin-top: 64px;
    display: flex;
    gap: 122px;
    align-items: center;
    justify-content: center;
}

main .icons .icon{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

main .icons .icon h4{
    color: white;
}

main .icons .icon h5{
    color: white;
}

.projetos{
    color: #97EDAA;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    flex-direction: column;
    gap: 50px;
}

.projetos .projects{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}

.projetos .projects .cards .project{
    width: 592px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #c9c9c9;
}
.projetos .projects .cards h1,.projetos .projects .cards h2{
    color: white;
}

.projetos .projects .cards .links{
    margin-top: 10px;
    gap: 20px;
    display: flex;
    flex-direction: row;
}

.projetos .projects .cards .links a{
    text-decoration: none;
    color: black;
    background-color: #97EDAA;
    padding: 1rem;
    border-radius: 10px;
}

.servicos .service{
    margin-top: 200px;
    color: #97EDAA;
    display: flex;
    justify-content: center;
}

.servicos .divs{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    gap: 32px;
    justify-content: center;
}

.servicos .divs div{
    width: 384px;
    height: 240px;
    border-bottom: 2px solid #97EDAA;
    padding: 10px;
    background-color: #1f1f1f;
}

.servicos .divs div h1{
    color: white;
}

.habilidade{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.habilidade .hability{
    color: #97EDAA;
}

.habilidade .items{
    display: flex;
    gap: 20px;
    margin-top: 100px;
}

span{
    color: #97EDAA;
}

footer{
    background-color: #101010;
    margin-top: 10rem;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer h1{
    color: white;
    font-size: 1rem;
    margin-left: 4rem;
    margin-right: 4rem;
}