body {
    background-color: black;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    color: white;
}

.topnav {
    padding-top: 1em;
    float: left;
    text-align: right;
    overflow: hidden;
}

main {
}

#intro-name {
    font-size: 2.3em;
    color: white;
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

#intro-bio {
    color: white;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row: 4 / span 1;
    font-size: 1em;
    opacity: 0;
    animation: fadeInAnimation ease 1s;
    animation-delay: 1.1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.container {
    display: grid;
    gap: 10px;
}

.topnav .active {
    color: white;
}

.topnav a {
    padding-left: 8vw;
    padding-right: 2vw;
    text-decoration: none;
    color: gray;
}

.topnav .socials a {
    float: left;
    padding-left: 0.25em;
    padding-right: 1em;
}

.topnav .socials img {
    width: 3em;
    height: auto;
}

.invert {
    filter: invert(100%);
}

#hi {
    opacity: 0;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    }

#im {
    opacity: 0;
    animation: fadeInAnimation ease 1s;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    color: inherit;
}

#slack {
    grid-column: 1 / span 2;
    text-align: center;
}
#email {
    grid-column: 3 / span 2;
    text-align: center;
}

.contact-tile {
    background-color: #22211f;
    padding: 2em;
    border-radius: 0.5em;
    transition: transform 0.3s ease-in-out;
}

.contact-tile:hover {
    transform: scale(1.02);
}

.tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
}

.tile {
    flex: 11 0 200px;
    background-color: #22211f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1em;
    border-radius: 0.5em;
    transition: transform 0.3s ease-in-out;
}

.tile:hover {
    transform: scale(1.02);
}

.tile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
}

.plink {
    background-color: #cf089a;
    text-decoration: none;
    padding: 4px 12px 4px 12px;
    border-radius: 1em;
    font-weight: 500;
    transition: font-size 0.3s ease-in-out;
}

.plink:hover {
    font-size: 1.08em;
}

.olink {
    background-color: #f06007;
    text-decoration: none;
    padding: 4px 12px 4px 12px;
    border-radius: 1em;
    font-weight: 500;
    transition: font-size 0.3s ease-in-out;
}

.olink:hover {
    font-size: 1.08em;
}

.hideoverflow {
    overflow: hidden;
}