body {
    background-color: rgb(19, 19, 19);
    overflow-x: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

h1,h2,h3,h4,h5,h6 {
    color: aliceblue;
    max-width: 600px;
    text-align: center;
}

.input {
    border: none;
    width: 300px;
    height: 50px;
    font-family: sans-serif;
    font-weight: 600;
    font-size: large;
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.637);
    transition: ease-out 0.15s;
}

.input:hover {
    transform: scale(1.1);
}

form {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.question {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

img {
    width: 200px;
}

hr {
    border: none; 
    height: 2px; 
    background-color: #ffffff9d; 
    width: 500px;
}

p {
    color: rgb(221, 221, 221);
    text-align: center;
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.horiz-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hor-container {
    display: flex;
    align-items: flex-start;
    width: 270px;
    justify-content: space-between;
}

.vertical-line {
  width: 2px;
  height: 50px;
  background-color: rgba(240, 248, 255, 0.732);
}

.horizontal-line {
  margin-top: 10px;
  width: 270px;
  height: 2px;
  background-color: rgba(240, 248, 255, 0.732);
}

@media (max-width: 740px) {
  hr {
    width: 70vw;
  }
  
  .horiz-container {
    flex-direction: column;
  }
}