* {
    padding: 0;
    margin: 0;
}

#show {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid gray;
    background-color: gray;
    color: white;
    padding: 12px 12px;
    font-size: 32px;
    font-weight: 900;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100vw;
    height: 100vh;
    justify-content: center;
}

.para {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 54px;
  font-weight: 800;
  color: cornflowerblue;
  text-decoration: underline;
}

@media only screen and (max-width: 568px) {
    .para {
        font-size: 30px;
    }
    #show {
        width: 150px;
        height: 30px;
        font-size: 24px;
    }
}