.silkscreen-regular {
    font-family: 'Silkscreen', sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #181818;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-family: 'Silkscreen';
    color: white;
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    background-color: black;
    margin-top: 0;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
}

.main-text {
    background-color: black;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 27px;
    margin-bottom: 0;
    padding-bottom: 30px;
}

p {
    font-family: 'Silkscreen';
    color: white;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    font-size: 15px;
    margin-bottom: 0;
}

.bottom {
    background-color: black;
    height: 100px;
    margin-bottom: 0;
    margin-left: 10%;
    margin-right: 10%;
    padding-bottom: 0;
    width: 80%;
    border-top-right-radius: 27px;
    border-top-left-radius: 27px;
    flex-grow: 6;
    
}

.rainbow-text {
    color: transparent;
    font-size: 40px;
    /*background: linear-gradient(90deg, red, orange, yellow, green, blue, violet, red);*/
    background: linear-gradient(90deg, oklch(77.3% 0.171 235), oklch(69.7% 0.229 235), oklch(62.1% 0.286 235), oklch(54.6% 0.343 235), oklch(40.3% 0.343 235), oklch(33.6% 0.286 235), oklch(26.9% 0.229 235), oklch(33.6% 0.286 235), oklch(40.3% 0.343 235), oklch(54.6% 0.343 235), oklch(62.1% 0.286 235), oklch(69.7% 0.229 235), oklch(77.3% 0.171 235));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}