*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #0f0f1a;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: #8a5cf633;
    padding: 15px;
}

header h1 {
    color: white;
    background-color: #8a5cf641;
    text-align: center;
    border-radius: 15px;
    font-size: 35px;
    padding: 5px;
    font-weight: bold;
}

header h1:hover{
    cursor: pointer;
}

#header_list_principal {
    display: flex;
    align-items: center;
}

#header_list_principal li {
    list-style: none;
    padding: 10px;
    color: white;
}

#header_list_principal li:hover {
    background-color: #37ff00;
    color: black;
    border-radius: 10px;
    cursor: pointer;
}

main{
    height: 100vh;
}

#section-published-apps{
    padding: 15px;
}

#section-context{
    padding: 15px;
    margin-bottom: 30px;
    color: white;
}

.cards-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 40px;
}

.card{
    height: 50vh;
    width: 30vw;
    padding: 15px;
    border-radius: 25px;
    border: 5px solid rgba(255, 255, 255, 0.313);
    background: #020024;
    justify-content: space-between;
    transition: 0.3s;
background: linear-gradient(151deg, rgba(2, 0, 36, 1) 0%, rgba(28, 9, 121, 1) 35%, rgba(166, 0, 255, 1) 100%);
}

.card{
    transform: translateY(-10px);
}

.card-item{
    display: flex;
    height: 50vh;
    width: 30vw;
}

 .card-details{
    display: flex;
    justify-content: left;
 }

.card-item, .img-card{
    max-height: 10vh;
}

.card-item h5{
    font-size: 17px;
    padding: 5px;
    color: white;
}

.card-item p{
    width: 15vw;
    padding: 5px;
    color: white;
    font-size: 10px;
    margin-bottom: 30px;
}

.card-item, .img-info{
    height: 35vh;
    padding: 5px;
}

.card-item a{
    font-size: 15px;
    text-decoration: none;
    color: white;
    background-color: rgb(156, 36, 226);
    background: linear-gradient(45deg, #00c853, #64dd17);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.card-item a:hover {
    color: black;
    transform: scale(1.05);
}

#section-github-projects{
    width: 100vw;
    margin-top: 50px;
background: linear-gradient(151deg, rgba(247, 44, 4, 0.295) 0%, rgba(28, 9, 121, 0.098) 35%, rgba(166, 0, 255, 0.071) 100%);
    padding: 5px;
}

#repos{
    display: flex;
    flex-wrap: wrap;
    color: white;
    justify-content: space-evenly;
}

#repos div{
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 15px;
    border: 5px solid rgba(255, 255, 255, 0.313);
    background: #020024;
    justify-content: space-between;
    transition: 0.3s;
    margin: 5px;
background: linear-gradient(151deg, rgba(2, 0, 36, 1) 0%, rgba(28, 9, 121, 1) 35%, rgba(166, 0, 255, 1) 100%);
}

#repos div{
    transform: translateY(-8px) scale(1.02);
}

#repos p{
    padding-top: 15px;
}

#language{
    color: red;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
}

#repos div a{
    font-size: 10px;
    text-decoration: none;
    color: white;
    background-color: rgb(156, 36, 226);
    background: linear-gradient(45deg, #00c853, #64dd17);
    font-weight: bold;
    padding: 5px 5px;
    border-radius: 8px;
    transition: 0.3s;
}

#repos div a:hover{
    color: black;
    transform: scale(1.05);
}

@media only screen and (max-width: 1000px) {

    .card{
    height: 30vh;
    width: 35vw;
    padding: 15px;
    border-radius: 25px;
    border: 5px solid rgba(255, 255, 255, 0.313);
    background: #020024;
    justify-content: space-between;
background: linear-gradient(151deg, rgba(2, 0, 36, 1) 0%, rgba(28, 9, 121, 1) 35%, rgba(166, 0, 255, 1) 100%);
}

    .card-item, .img-card{
    max-height: 5vh;
}
    .card-item h5{
    font-size: 8px;
    padding: 5px;
    color: white;
}

.card-item p{
    width: 15vw;
    padding: 5px;
    color: white;
    font-size: 5px;
    margin-bottom: 20px;
}
	.card-item, .img-info{
    height: 23vh;
    padding: 5px;
}

.card-item a{
    font-size: 8px;
        padding: 5px 6px;
}
}