html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #010B13;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    color: #2A3439;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    color: #085191;
    opacity: 1;
}


.main {
    flex-grow: 1;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 1s ease-in-out;
    background-color: #010b13;
    opacity: 1;
    padding: 1em;
    background-image:  radial-gradient(#2A3439 0.9px, transparent 0.9px), radial-gradient(#2A3439 0.9px, #010b13 0.9px);
    background-size: 36px 36px;
    background-position: 0 0,18px 18px;
}

.content {
    position: relative;
    text-align: center;
    z-index: 1;

}
.cursor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s ease-in-out;
    pointer-events: none;
}

.content .name {
    font-family: 'Roboto Mono', sans-serif;
    text-align: center;
    font-size: 4em;
    background: linear-gradient(to right, #00DDFF, #FF006F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.content .title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact {
    border-top: 1px solid #2A3439;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.contact-links {
    display: flex;
    gap: 5vw;
    position: relative;
    overflow: hidden;
}

.contact-links a svg {
    width: 1em;
    height: auto;
}

.cards {
    margin: 0 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2em;
}

.card-link {
    background-color: #010B13;
    border: 1px solid #2A3439;
    border-radius: 1em;
    flex: 1 1 250px;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: 0.5s;
}

.card-link:hover {
    border: 1px solid #085191;
}

.card {
    padding: 2em;
}
