* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    display: flex;
    justify-content: center;
    text-align: center;
}

.container {
    
    margin-top: 10rem;
    width: 20rem;
    height: 3rem;
    background-color: lightseagreen;
}

#title {
    position: absolute;
    text-align: center;
    margin: auto;
    top: 1rem;
    color: red;
    font-size: 2rem;
}

.join-p {
    font-size: 2rem;
    padding-right: 3rem;
}

#scroll-join {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
  }
  
  .scroll-arrow {
    cursor: pointer;
    margin: 0 0.6em;
    font-size: 1.4em;
  }