main {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: none;
    height: 900px;
}

.about h1{
    font-size: 90px;
    font-weight: 400;
    font-family: 'Jost';
    margin: 0;
}

.about h2{
    font-size: 32px;
    font-family: 'Jost';
    font-weight: 300;
    margin: 5px;
}

.about-buttons {
    display: flex;
    margin-top: 15px;
    gap: 30px;
}

.download-resume, .project-direct {
    margin-top: 25px;
    padding: 25px 60px;
    font-size: 26px;
    font-family: 'Share Tech';
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    background-color: rgb(250,250,250);
    box-shadow: 2px 2px 4px rgba(5,5,5,0.4);

    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s;
}

.download-resume:hover, .project-direct:hover {
    opacity: 0.4;
}

.download-resume:active, .project-direct:active {
    transform: scale(0.98);
    background-color: rgb(35, 134, 239);
    color: white;
    border-color: white;
}