@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');


body {
    background-color: #e6e6e6;
    font-family: "JetBrains Mono";
    overflow: hidden;
}

.content {
    width: 100vw;
    height: 100vh;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.name {
    font-weight: bold;
    font-size: 65px;
    color: #1a1a1a;
}

.name p {
    margin: 0;
}

.about {
    font-weight: medium;
    font-size: 25px;
    color: #1a1a1a;
}

.links {
    font-weight: semibold;
    font-size: 20px;
    a {
        color: #1a1a1a;
        text-decoration: none;
    }
    a:hover {
        color: #808080;
        text-decoration: underline;
    }
}