:root {
    --primary-color: rgb(250, 225, 163);
    --button:  rgb(from var(--primary-color) r g b / .4);
    --button-hover: rgb(from var(--primary-color) r g b / .2);
}

body {
    width: 100%;
    height: 100vh;
    display: grid;
    place-content: center;
    gap: 1ch;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}

.button {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: var(--button);
    cursor: pointer;
    font-size: 14px;
    transition: background-color 200ms ease;

    &:hover {
        background-color: var(--button-hover);
    }
}

h1.title {
    font-family: "Rock 3D", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    text-align: center;
    margin-block: 0;
}
  

@media screen and (max-width: 960px) {
    .button {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    h1.title {
        font-size: 36px;
    }
}
