body {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-family: 'Kanit', sans-serif;
    overflow: hidden;
    background-color: #dcc7be;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    animation: infinite;
    transition: all 200ms ease-in-out;
    transform: scale(1.5);
}

button {
    padding: 0.7rem 0.55rem;
    background-color: white;
    border-radius: 10px;
    border: 2px solid black;
    transition: all 150ms ease-in-out;
}

button:hover {
    cursor: pointer;
    scale: 1.1;
    font-weight: bold;
}

button:active {
    cursor: pointer;
    scale: 0.95;
    font-weight: 400;
}


a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}