body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-width: 320px;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1rem;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    text-align: center;
    margin: 0;
}

.title {
    margin-bottom: 2.5rem;
}

.tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tool {
    width: 100%;
    max-width: 120px;
    padding: 0.5em;
    outline: black solid 0.1em;
    border-radius: 0.1em;
    margin: 0.5em 0;
    box-sizing: border-box;
    text-align: center;
}

.tool:hover {
    cursor: pointer;
    outline: black solid 0.15em;
}

.footer {
    cursor: pointer;
    text-align: center;
    margin: 0;
}

#app {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
