:root{
    --bg-body : #291a31;
    --text : #e8cdf6;
    --purple: #8e44ad;
    --yellow: #f1c40f;
    --green : #94d05e;
    --dark-purple : #291a31;
    --red : #ed1d24;
    --red-grad :linear-gradient(108.4deg, rgb(253, 44, 56) 3.3%, rgb(176, 2, 12) 98.4%);
    }
    @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
body {
    height: 100vh;
/*     background: rgb(251,226,6);
background: linear-gradient(130deg, rgba(251,226,6,1) 0%, rgba(148,241,3,1) 35%, rgb(166, 0, 255) 100%); */
background: rgb(6,237,251);
background: linear-gradient(130deg, rgba(6,237,251,1) 0%, rgba(241,218,3,1) 45%, rgba(166,0,255,1) 100%);
    display: flex;
    font-family: 'Lato', sans-serif;

}
h1,h2,h3,h4,h5,h6 ,p{
    font-weight: 300;
}
h1 {
    font-size: 3em;
}
p {
    font-size:1.5em;
    line-height: 1.5em;;
}
main {
    width:100%;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.center-screen {
    background-color: rgb(0, 0, 0);
    border-radius:10px;
    padding:20px;
    text-align: center;
    height:70%;
    width:80%;
    display: flex;
    align-items: center;
}
.center-screen h1{
    color: var(--purple);
  
}
.center-screen p {
    color:white;
}
.button {
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--purple);
    color:white;
    padding:20px;
    border-radius:5px;
    margin-bottom:10px;
    display: inline-block;
    transition: all 1s;
    font-size:14px;
}
.box-shadow {
    box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048),
    0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072),
    0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12)
  ;
}
.button:hover {
    transform: scale(110%);
}

.inline-block{
    display: inline-block;
}
.block {
    display: block;
}
.link {
    color:var(--red);
    
}
.band{
    background:white;
    padding:10px;
    border-radius:5px;
    width:250px;
    margin: 0 auto;
}