body{
height: 100vh;
}

.container-fluid {
height: 100%;
background: #15d345;
background: linear-gradient(90deg, Orgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83,1) 100%);
align-items: center;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
}

.row {
min-height: 200px;
width: 100%;
align-items: center;
text-align: center;
}

#text {
font-size:10vw;
color: #ff0000;
text-shadow: 2px 5px .5rem O#0e313f;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

p {
    font-family:Georgia, 'Times New Roman', Times, serif;
}

button {
  transition: all 0.5s;
  font-size: 17px;
  padding: 1ch 2ch;
  background-color: rgb(255, 0, 0);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  box-shadow:
    2px 2px 0px hsl(0, 100%, 50%),
    4px 4px 0px hsl(4, 92%, 51%),
    6px 6px 0px hsl(17, 93%, 47%),
    8px 8px 0px hsl(27, 93%, 48%),
    10px 10px 0px hsl(46, 86%, 48%),
    12px 12px 0px hsl(61, 94%, 52%),
    14px 14px 0px hsl(69, 84%, 48%),
    16px 16px 0px hsl(118, 95%, 61%),
    18px 18px 0px hsl(130, 100%, 50%);
}

button:hover {
  background-color: hsl(0, 0%, 50%);
  color: #ffffff;
  box-shadow: none;
}
