*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    overflow: hidden;
}

.titulo {
    background: linear-gradient(to right, rgb(0, 0, 87), rgb(0, 113, 151));
    color: white;
    text-align: center;
    padding: 1em;
}

.foto {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 20px;
    width: 100%;
    height: auto;
    margin-bottom: 0.3em;
}

.foto img {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
    margin: 0 20px;
    transition: 0.3s ease;
}

.foto img:hover {
    transform: scale(1.1);
}
.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 20px;
}

.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0.6em;
}

.contato i {
    margin-left: 2px;
}

footer {
    background: linear-gradient(to right, rgb(0, 0, 87), rgb(0, 113, 151));
    color: white;
    text-align: center;
    padding: 1em;
}

.paragrafo {
    font-family: sans-serif;
    margin-top: 2px;
    width: 60%;
    font-size: 18px;
    margin-bottom: 20px;
}

.lista {
    font-family: sans-serif;
    margin-top: 0.3em;
    font-size: 18px;
    padding: 0.2em;
    list-style: none;
    padding-left: 0;
}

.lista li {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 0.4em;
}

.lista i {
    display: inline-flex;
    align-items: center;
}

.html {
    color: rgb(255, 208, 0);
}

.css {
    color: rgb(0, 113, 151);
}
.javascript {
    color: rgb(255, 223, 0);
}
.react {
    color: rgb(97, 218, 251);
}
.nodejs {
    color: rgb(0, 113, 151);
}
.python {
    color: rgb(255, 223, 0);
}
.git {
    color: rgb(255, 208, 0);
}
.github {
    color: rgb(255, 255, 255);
}
.postgresql {
    color: rgb(0, 113, 151);
}
.mysql {
    color: rgb(255, 223, 0);
}

.seta{
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    margin-top: 17px;
}