

body{
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
header{
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    color: white;
font-size: 6rem;
font-family: "Chakra Petch";
font-weight: 500;
letter-spacing: 1rem;
margin-bottom: 0;
padding-bottom: 0;
margin-top: 1rem;
line-height: 1;
}
h2{
    color: white;
    font-family: "Cutive Mono";
    font-weight: 400;
    letter-spacing: 0.25rem;
}
main{
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
a{
    color: black;
    text-transform: uppercase;
    background-color: white;
    text-decoration: none;
    border-radius: 100px;
    width:90%;
    text-align: center;
    margin: 1rem;
    font-size: 1.5rem;
        box-shadow: 5px 5px 0px -2px #DDCFFF, 5px 5px #040DE1;
        border: 2px solid #040DE1;
        font-family: "Chakra Petch";
        letter-spacing: 0.25rem;
        font-weight: 600;
        padding: 1rem;
        margin: 0.5rem;
}

.blue{
    background:linear-gradient(135deg,rgb(100,207,241) 0%,rgb(122,103,241) 100%)
}

.purple{
    background:linear-gradient(135deg,rgb(175,109,252) 0%,rgb(238,140,198) 51%,rgb(252,229,161) 100%);
}

.green{
 background:linear-gradient(135deg,rgb(34,193,195) 0%,rgb(224,253,45) 100%);
}

.orange{
    background:linear-gradient(135deg,rgb(255,231,102) 0%,rgb(255,94,98) 100%)
}

