#startPage {
    background-image: url("../images/Cover_Page_Edit.jpg");
    background-position: center;
    background-size: cover;
    position: relative;

    display: flex;
    flex-direction: column;
}

#startPageSmsConversation {
    height: 400px;
    width: 60%;
    background-color: transparent;
    margin-left: 120px;
    border-radius: 40px;
    display: none;
    flex-direction: column;
    align-items: end;
    background-image: url("../images/vecteezy_smartphone-and-mobile-phone_11047522.png");
    background-position: center;
    background-size: cover;
}

#humanButtonContainer {
    flex: 1;
    padding-top: 10px;
    padding-left: 75px;
    margin-top: 450px;
}

#humanButton {
    height: 200px;
    width: 45px;
    display: flex;
    border-radius: 30px;
    transform: rotate(-3deg);
    opacity: 0;
}

#loadingSms {
   width: 30%;
   height: 40px;
   border: 1px solid gray;
   border-radius: 50px;

   display: flex;
   justify-content: center;
   align-items: center;
   padding: 5px;
   gap: 5px;

   margin-right: 40px;

   animation-name: startPageSmsDiv;
   animation-duration: 300ms;
   animation-iteration-count: 1;
   animation-delay: 3000ms;
   animation-fill-mode: forwards;
}

#loadingSmsP {
    margin: 0;
}

#valentinaSmsName {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0px;
    width: 100%;
    font-family: spaceGrotesk;
}
 
.smsCircle {
    height: 10px;
    width: 10px;
    border: 1px solid gray;
    border-radius: 50%;
    display: flex;
    animation-name: smsColor;
    animation-duration: 1750ms;
    animation-iteration-count: infinite;
}

.smsCircle:nth-child(1) {
    animation-delay: 0ms;
}

.smsCircle:nth-child(2) {
    animation-delay: 300ms;
}

.smsCircle:nth-child(3) {
    animation-delay: 600ms;
}

@keyframes smsColor {
    0% { 
        background-color: gray;
    }

    50% {
        background-color: white;

    }

    100% {
        background-color: gray;
    }
}

@keyframes startPageSmsDiv {
    0% {
        width: 30%;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background-color: #e5e5ea;
    }

    100% {
        width: 55%;
        height: 100px;
        border: 0;
        border-radius: 20%;
        background-color: #e5e5ea;
    }
}