@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

main {
    background-color: blanchedalmond;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile {
    text-align: center;
    max-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 1px 3px 7px 0px #999999;
    align-items: center;
}

.button-container button {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
    color: #fff;
    background-color: #d61212;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.button-container img {
    width: 170Px;
    height: 170px;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
}

.button-container h1 {
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a4b4d;
}

.button-container .about span {
    font-size: 0.9rem;
    font-weight: 400;
    left: 0px;
    text-align: center;
    color: #31363a;
}

.button-container .about p {
    color: #767779;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.24;
    margin-bottom: 1rem;
}

.popup-box {
    background-color: #fff;
    padding: 2.3rem;
    width: 400px;
    display: none;
    animation: fadeIn 0.5s;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-box span {
    padding: 13px 33px;
    border-radius: 50px;
    background-color: transparent;
    border: 6px solid #eb9447;
    color: #eb9447;
    font-size: 3rem;
    font-weight: 500;
}

.popup-box h1 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: #31363a;
    font-weight: 500;
    line-height: 1.4;
}

.popup-box h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #2e3033;
    margin-top: 0.6rem;
}

.popup-box .popup-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btns button {
    padding: 0.6rem 0.9rem;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    color: #fff;
    margin-top: 1rem;
    cursor: pointer;
}

.popup-btns .cancel {
    background-color: #767779;
}

.popup-btns .delete {
    background-color: #d61212;
}


.delete-container{
    width: 200px;
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    display: none;
}