@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    background-color: rgb(31, 33, 39);
    color: white;
    font-family: 'Jost', sans-serif;
    cursor: default;
}

h1 {
    background: transparent;
    font-size: 50px;
    text-decoration: underline;
    text-align: center;
    text-decoration-color: #227effc7;
}

button {
    width: 340px;
    height: 70px;
    border: none;
    cursor: pointer;
    background-color: rgb(41, 44, 56);
    border-radius: 20px;
    box-shadow: 8px 10px 10px rgb(19, 18, 18);
    text-decoration: none;
    transition: all 0.15s ease;
}

button:hover {
    background-color: rgb(53, 58, 78);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.681);
    color: rgba(255, 255, 255, 0.733);
    transform: scale(1.06);
}

button:active {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.681);
    transform: scale(1);
}
