/*
        pink #F3C6C1
        dark #11171C 
        */
body {
    background-color: rgb(243, 198, 193, 0.1);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.blob {
    background: rgb(243, 198, 193);
    border-radius: 50%;
    margin: 10px;
    height: 50px;
    width: 50px;
    box-shadow: 0 0 0 0 rgb(243, 198, 193);
    transform: scale(1);
    animation: pulse 2s infinite;
    font-family: "Shadows Into Light Two", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(243, 198, 193, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 60px rgba(243, 198, 193, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(243, 198, 193, 0);
    }
}

.contact {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.contact a {
    font-family: "Shadows Into Light Two", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: #11171C;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}


#form-error-message, #form-success-message {
    display: none;
}

div[data-lastpass-icon-root] {
    display: none;
}