@import url("/css/reset.css");
@import url("/css/theme.css");

.body {
    height: 100%;
}

.wrapper {
    height: 100vh;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 100px;
    margin: 50px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
}

.links a {
    font-size: 30px;
    color: var(--color-foreground);
    text-decoration: none;
    border: 2px solid var(--color-foreground);
    padding: 20px 30px;
    margin: 2px;
    transition: all 0.3s ease;
}

.links a:hover {
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
