@import url('https://fonts.googleapis.com/css?family=Anuphan:400,700&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Anuphan', sans-serif;
        position: relative;
    }
    body {
        background-image: url('/img/bg.png');
        background-size: cover;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main {
        display: block;
        margin: 0 auto;
        z-index: 1;
        max-width: 100%;
    }
    .myButton{
        margin: 10px;
        width: 250px;
        height: 50px;
        font-size: 20px;
        color: #fff;
        background: none;
        border-radius: 10px;
        border-color: #df9026;
        animation: slideInUp 1s ease-in;
    }
    .myButton:hover{
        background-color: #000000;
        cursor: pointer;
    }
    canvas {
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 100%;
    }
    @keyframes slideInUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
    }
    .card {
        border-radius: 10px;
        margin-bottom: 20px;
        width: 1024px;
        height: fit-content;
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0px 2px 6px rgba(50, 50, 50, 0.2);
        transition: all 0.2s ease-in-out;
    }
    .card:hover {
        /*box-shadow: rgba(50, 50, 50, 0.9) 0px 6px 40px;*/
    }
    .card-preview {
        height: 100%;
        width: 100%;
    }
    .card-preview img {
        object-fit: cover;
        overflow: hidden;
        transition: all 0.4s ease-out;
    }
    .card:hover .card-preview img {
        transform: scale(1.02);
    }
    .bg{
        width: 100%;
        height: 100%;
        animation:  slideInUp 1s ease-in;
    }
