/*
** src/css/home.css
*/

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #fff;
}

main {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: vertical;
    padding: 64px;
    font-family: "Source Code Pro";
    gap: 20px;
}

p {
    margin: 0;
}

.vflex {
    display: flex;
    flex-direction: column;
}

.hflex {
    display: flex;
    flex-direction: row;
}

#title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
}

.text {
    font-size: 16px;
}

.currently {
    gap: 4px;
}

.links {
    gap: 16px;
    align-items: center;
}

.projects-link {
    color: black;
}
