body {
    background-color: #121212;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
    text-align: center;
    margin: 0;
    height: 100%;

}

.navbar {
    background-color: #222328;
    font-weight: bold;
    padding-left: 50px;
    padding: 10px;
    text-align: left;
    user-select: none;
    position: fixed;
    top: 0;
    overflow: hidden;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/media/hero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 35vh;
    width: 100%;

}

.hero-text {
    padding-top: 120px;
}


.tools {
    background-color: #0c0c0c;
    padding: 2px;
    padding-bottom: 40px;
    box-shadow: rgba(114, 46, 240, 0.4) 0px 5px, rgba(114, 46, 240, 0.3) 0px 10px, rgba(114, 46, 240, 0.2) 0px 15px, rgba(114, 46, 240, 0.1) 0px 20px, rgba(114, 46, 240, 0.05) 0px 25px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.tools img:hover {
    filter: brightness(1.3)
}

.about {
    padding: 50px
}

.about button {
    background-color: #1f1f1f;
    border: none;
    padding: 15px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}

.about button:hover {
    background-color: #222328;
}


.Portfolio {
    align-items: center;
    text-align: center;
}

.card {
    max-width: 350px;
    box-shadow: rgba(114, 46, 240, 0.3) 0px 0px 10px 3px;
    margin: 1em auto;

    background-color: #0c0c0c;
    padding: 10px;
    padding-top:40px;
    padding-bottom:40px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 25px;
    align-items: center;
}

.card h4 {
    color: #a389ff;
}

.card img {
    height: 150px;
    border-radius: 10px;
}