@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;1,100&display=swap');

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: black;
}

.container {
    text-align: center;
}

.container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-family: "Raleway";
}

.profiles {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.profile img {
    width: 130px;
    height: 130px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.9s;
}

.profile span {
    margin-top: 20px;
    font-size: 20px;
}

.profile:hover img {
    border-color: #ffffff;
    background-color: #ffffff;
}

.profile {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #7c7c7c;
    border: none;
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s;
}

.delete-btn:hover {
    background: #7c7c7c;
    border: solid 1px white;
    
}