body {
    background-color: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.app {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    gap: 20px;
}

.app .header h1 {
    color: #fff;
    font-size: 64px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.app .header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.app .tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app .tools a {
    padding-left: 30px;
    padding-right: 30px;
    outline: solid 0.2px #ffffff33;
    outline-offset: 0px;
    text-decoration: none;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.app .tools a:hover {
    background-color: rgba(255, 255, 255, 0.03);
    outline: solid 0.2px #ffffff5e;
    outline-offset: 0px;
}