* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Philosopher', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: black;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(3px);
    z-index: -1;
    opacity: 0.5;
}

#container {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    border: black solid 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    h1 {
        font-size: 6rem;
        /*padding: 20px;*/
    }

    p {
        font-size: 3rem;
        padding: 20px;
        text-align: center;
    }

    button {
        background-color: white;
        border: 3px solid black;
        border-radius: 12px;
        color: black;
        padding: 10px;
        transition: all 0.3s ease;
        font-weight: bold;
        font-size: 2rem;

        &:hover {
            background-color: black;
            color: white;
        }

        &:active {
            transform: scale(0.9);
        }
    }
}






