.updock-regular {
  font-family: "Updock", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    font-family: "Updock", cursive;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(/images/roses.jpg);
    background-size: cover;
    opacity: 0.6;
    z-index: -1;
}

.container {
    background-color: #ffffff83;
    width: 900px;
    height: fit-content;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    margin-bottom: 40px;
}

#title {
    text-align: center;
    font-size: 65px;
    padding-top: 30px;
}

#intro {
    text-align: center;
    font-size: 33px;
}

#colored-text {
    color: #ca3390;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    
}

#ie {
    margin-left: 200px;
    margin-top: -20px;
    color: #000000;
    text-align: left;
    font-size: 13px;
    opacity: calc(0.5);
    font-family: 'Times New Roman', Times, serif;
}

#input {
    font-family: "Updock", cursive;
    width: 300px;
    padding: 18px;
    font-size: 25px;
    /*text CSS*/
    background: linear-gradient(60deg, #b628a3, #c26fc5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /*border CSS*/
    border-image: linear-gradient(to right, #469db3, #f50a9b);
    border-image-slice: 1;
}

#input:focus {
    outline: none; /* make sure browser doesn't override */
    border: 2px solid #ca3390;
    box-shadow: #ca3390 0px 0px 12px;
}

#submit-button {
    font-family: "Updock", cursive;
    background-color: #ca3390;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 9px;
    transition: background-color 0.2s ease;
    margin: 25px;
}

#submit-button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.01);
    box-shadow: #000000 0px 0px 12px;
}

.poem-container {
    margin: 0 auto;
    background-color: #ffffff17;
    /* blurs the background */
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    padding: 20px;
    text-align: left;
    border-left: 4px solid #ca3390;
    border-radius: 8px;
    width: 600px;
    font-size: 33px;
}

.poem-container strong {
    font-weight: bold;
    color: #ca3390;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    font-size: 25px;
    padding-bottom: 30px;
}

a {
    color: #ca3390;
    text-decoration: none;
}

a:hover {
    text-decoration: underline wavy;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}