*{
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    flex-shrink: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad0c4, #fbc2eb, #a1c4fd, #c2e9fb);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(50px);
    overflow: hidden;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.profile-picture{
    width: 150px;
    height: 150px;
    border-radius: 100%;
}
.socials{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.social-icon{
    width: 20px;
    height: 20px;
}
.social-button{
    width: 250px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: black;
    flex-shrink: 0;
    border: 1px solid transparent;
    transition: all 0.1s;
}
.social-button:hover{
    border: 1px solid white;
    transition: all 0.1s;
    transform: scale(1.05);
}
.top-buttons{
    width: 250px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.top-button{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
}
.top-button button{
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.1s;
}
.top-button button:hover{
    border: 1px solid white;
    transition: all 0.1s;
    transform: scale(1.05);
}
.modal.show-modal{
    display: grid;
    position: fixed;
    bottom: 25px;
    animation: slideUpModal 0.1s;
}
.modal{
    width: 300px;
    height: auto;
    background-color: rgba(255, 255, 255, 1);
    padding: 10px;
    border-radius: 15px;
    grid-template-columns: 1fr 50px;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    animation: slideUpModal 0.2s;
    bottom: -120%;
    transition: all 0.1s;
    z-index: 100;
}
@keyframes slideUpModal {
    from{
        bottom: -120%;
        opacity: 0;
    }
    to{
        bottom: 25px;
        opacity: 1;
    }
}
.modal p{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background-color: lightgray;
    border-radius: 10px;
    height: fit-content;
    padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal img{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 30px;
    height: 30px;
}
.modal button{
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: black;
    color: white;
    justify-self: center;
}
#notifications{
    position: fixed;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 40vh;
    width: 300px;
    align-items: center;
}


/* Chrome, Edge, Safari */
#notifications::-webkit-scrollbar{
    display: none;
}
#notifications{
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

#notifications p{
    padding: 10px;
    background-color: white;
    border-radius: 25px;
    width: 100%;
    box-sizing: border-box;
    animation: popNotification 0.1s;
}
@keyframes popNotification {
    from{
        transform: translateY(-20px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
    
}