@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body{
    background-color: #1a1a1a;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-inline: .5rem ;
}
h1 {
    position: relative;
    font-size: clamp(1.563rem, 0.636rem + 4.944cqw, 12.5rem);
    color: white;
}
span{
    color: red;
}
p{
    position: relative;
    color: rgb(95, 95, 95);
    font-size: clamp(1rem, 0.926rem + 0.395cqw, 1.875rem);

}
button{
    position: relative;
    margin: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: none;
    font-size: clamp(1rem, 0.966rem + 0.181cqw, 1.4rem);
    background-color: #2d2d2d;
    color: white;
}
button:hover{
    cursor: pointer;
    background-color: #222222;
}
#message {
    display: none;
}
#canvas1{
    position: absolute;
    background-color: #1a1a1a;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}