
  @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@100;500&family=Bricolage+Grotesque:opsz,wght@12..96,600&family=Shantell+Sans&display=swap');

body {
    background-color: rgba(227, 115, 255, 1);
    color: rgba(244, 237, 227, 1);
}

.title {
    font: weight 500px;
    font-size: larger;
    color: rgba(244, 237, 227, 1);
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 120vh;
    width: 52%;
    padding: 160px 0 0 20px;
    margin-top: 50px;
    color: rgb(255, 255, 255);
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    word-spacing: 0.1px;
    line-height: 25px;
}

.container p {
    margin-bottom: -3px;
    color: rgba(244, 237, 227, 1);
}

a {
    text-decoration: none;
    color: rgba(244, 237, 227, 1);
    font-weight: 500;
    transition: color 0.5s, font-size 0.3s;
}

a:hover {
    color: rgba(94, 234, 100, 1);
    font-size: 120%;
    font-family: 'Shantell Sans', cursive;
    transition: color 0.5s;
}

.and{
    color:rgba(244, 237, 227, 1);
    
}

.and:hover {
    color:rgb(143, 214, 255);
    font-family: 'Shantell Sans', cursive;
    font-size: 120%;
    transition: color 0.5s;
}

.end {
    color:rgba(244, 237, 227, 1);
}
.change-letter-and {
    color: rgb(112, 0, 249);
    font-family: 'Shantell Sans', cursive;
    font-size: 120%;
    transition: color 0.5s, font-size 0.5s;
}


#better-button {
    background-color: transparent;
    border: 0px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color:  rgba(244, 237, 227, 1);
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0.5px 0.5px 6px 6px rgba(0, 0, 0, 0.1); 
    font-family:'Shantell Sans', cursive;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#better-button:hover {
    background-color: rgba(255, 115, 123, 1);
    color: rgba(255, 255, 255, 1);
}

#better-button.clicked {
    animation: scaleButton 0.5s ease forwards;
}

@keyframes scaleButton {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}