*{
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: black;
}

header{
    background-color: deepskyblue;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
}

header button{
    position: absolute;
    left: 5%;
    top: 50%;
    translate: 0 -50%;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background-color: blue;
}

header button a{
    color: white;
    font-weight: bold;
    text-decoration: none;
}

main{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    padding: 20px;
    gap: 20px;
}

article{
    background-color: #222;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
    gap: 20px;
    border-radius: 20px;
    position: relative;
}

article img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

article div{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

article span{
    font-weight: bolder;
}

article .btn-del{
    position: absolute;
    right: 5%;
    top: 5%;
}

.btn-del{
    background-color: transparent;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: red;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-del:hover{
    background-color: rgb(255, 0, 0, 0.5);
    color: white;
}