body {
    background-color: black;
    color: grey;
    font-family: 'Lucida Console';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
}
.links, .projects {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.button {
    margin-bottom: 10px;
    font-family: 'Lucida Console';
    padding: 20px 40px;
    background-color: #0073b1;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    width: 250px;
    cursor: pointer;
    transition: background-color 0.3s ease, filter 0.3s ease;
}
.button:hover {
    filter: brightness(75%);
    color: white;
}
.github {
    background-color: #333;
}
.resume {
    background-color: #28a745;
    width: 330px;
}
.contact {
    background-color: #ff5722;
    width: 330px;
}
.collapsible {
    background-color: #0073b1;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 330px;
}
.collapsible:hover {
    background-color: #005580;
}
.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.content a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #0073b1;
    font-size: 1rem;
    margin: 5px 0;
}
.content a:hover {
    color: #005580;
}
#typing-effect {
    font-family: 'Courier', monospace;
    font-size: 2.5em;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.typing {
    animation: typing 2s steps(14) forwards;
}
.addCursor{
    border-right: 3px solid;
}
.removeCursor {
    border-right: none;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 14ch; /*CHARACTERS FOR NAME*/
    }
}
@media screen and (min-width: 992px) {
    .button{
        padding: 30px 150px;
        font-size: xx-large;
        border-radius: 10px;
    }
    #typing-effect{
        font-size: 4.7em;
    }
    .resume{
        width: auto;
    }
    .contact{
        width: auto;
    }
    .collapsible{
        width: auto;
    }
}
a{
    color: white;
}