body{
    background-color: rgb(23, 23, 23);
}

h1, h2, p, ul, footer{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.perfil{
    display: block;
    margin: auto;
    border: 4px solid #00ffcc;
    border-radius: 50%;
    box-shadow: 0 4px 15px #00ffcc;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

h1{
    color: #00ffcc;
    text-align: center;
}

h2{
    color: #00ffcc;
}

p{
    color: #00ffcc;
}

ul{
    color: #00ffcc;
}

.clona-card{
    background-color: #00ffcc;
    color: rgb(23, 23, 23);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: #007457 0px 5px 15px;
    margin-left: 10px;
}

.clona-card:hover{
    background-color: #007457;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.portfolio{
    background-color: #00ffcc;
    color: rgb(23, 23, 23);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: #007457 0px 5px 15px;
    margin-left: 10px;
}

.portfolio:hover{
    background-color: #007457;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

footer{
    color: #00ffcc;
}