@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Oswald&display=swap');

/*
box-shadow: makes square shadow around element's box
drop-shadow: makes shadow with the shape of the element, not necessary square one

box-shadow: inset - makes inner shape (inside object)
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Courgette', cursive;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #eee;
    gap: 30px;
}

.drop {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    color: #333;
    text-shadow: -2px -2px 5px #fff;
    filter: drop-shadow(4px 4px 10px #fff);
    box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.05), /*inner shadow*/ 15px 25px 10px rgba(0, 0, 0, 0.05), /*outer shadow*/ 15px 20px 20px rgba(0, 0, 0, 0.05),
    inset -10px -10px 15px rgba(255, 255, 255, 0.9);
}

/* top-left light inside drop */
.drop::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 25px;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    filter: blur(2px);
}

.drop::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    background: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    filter: blur(2px);
}

span {
    font-size: 3em;
}

.drop ion-icon {
    color: #ff5353;
    font-size: 2em;
    margin-top: 20px;
}
