@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgb(250, 250, 250);
}

.content {
    width: 600px;
    height: 410px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
}

.title {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.info {
    max-width: 50ch;
    margin-bottom: 2rem;
}

.btn-panel {
    --btn-size: 9.5rem;
    /* border: 3px dashed yellow; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 2rem;
    /* margin: 2rem; */
}

a {
    text-decoration: none;
}

.lbtn {
    cursor: pointer;
    display: grid;
    place-items: center;
    text-align: center;
    word-wrap: break-word;
    font-weight: 500;
    font-size: 1.5rem;
    color: rgb(70, 70, 70);
    border-radius: 2rem;
    height: var(--btn-size);
    width: var(--btn-size);
    box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease;
    /* border: 3px dashed red; */
}

.lbtn:hover {
    box-shadow: 14px 14px 7px 1px rgba(0, 0, 0, 0.09);
}
