* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center
}

h1 {
    font-family: sans-serif;
}

.icon {
    width: 300px;
    height: 300px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.link {
    color: white;
    font-weight: 600;
    font-family: sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.delete-account-text {
    font-family: sans-serif;
    color: black;
}

.delete-account-container {
    padding: 28px;
    border-radius: 12px;
    background-color: white;
    text-align: center;
    font-family: 'Arial';
    gap: 8px;
    display: flex;
    flex-direction: column;
}