@font-face {
    font-family: "CelestiaMedium";
    src: url("../fonts/Celestia Medium.ttf");

}

@font-face {
    font-family: "MLP";
    src: url("../fonts/MLP.ttf");

}

.navbar {
    position: sticky;
    top: 0;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(80, 80, 80, 0.5);
    font-family: "CelestiaMedium";

}
.navbar ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar li {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    text-align: left;
}

li a {
    font-size: 1.125rem;
    display: block;
    margin: 0;
    padding: 0 12px;
    text-decoration: none;
    color: #ffffff;
    height: 100%;
    line-height: 50px;
}

a:hover {
    background-color: rgba(80, 80, 80, 0.5);
}
.active {
    background-color: rgba(80, 80, 80, 0.8);
}

h1 {
    margin: 0px;
}

h2 {
    margin: 0px;
}

body {
    background-color: #aaaaaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#title {
    /* border-radius: 15px; */
    display: flex;
    font-size: 3rem;
    /* justify-content: center; */
    height: auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    color: #00ffff;
    text-shadow: 2px 2px 2px #000;
    /* background-color: #ffffff;
    padding-bottom: 10px;
    border: #555555 solid 4px; */
    /* box-shadow: 0 2px 3px #000; */
    text-align: center;
    font-family: "MLP";
    /* margin: 10px; */

}

.project-name {
    margin-top: 5px;
    margin-bottom: 0px;
    font-family: "MLP";
}

.project-description {
    margin-top: 0px;
}



#intro {
    border-radius: 15px;
    font-size: 1.125rem;
    height: auto;
    width: 500px;
    color: #000;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    margin: 20px;
    border: #555555 solid 4px;
    box-shadow: 0 2px 3px #000;
    text-align: left;
    font-family: "CelestiaMedium";

}

#projects {
    display: flex;
    font-size: 2rem;
    /* justify-content: center; */
    height: auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    color: #00ffff;
    text-shadow: 2px 2px 2px #000;
    /* background-color: #ffffff;
    padding-bottom: 10px;
    border: #555555 solid 4px; */
    /* box-shadow: 0 2px 3px #000; */
    text-align: center;
    font-family: "MLP";

}

.projects {
    font-family: "CelestiaMedium";
    display: flex;
    flex-direction: row;

}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.project {
    transition: transform 0.5s ease-in-out 0ms;
    border-radius: 15px;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
    width: 250px;
    color: #000;
    background-color: #ffffff;
    padding-bottom: 10px;
    box-shadow: 0 2px 3px #000;
    font-family: "CelestiaMedium";
    margin: 20px;

}

.project:hover {
    transform: scale(1.05);
}

.tag-container {
    display: flex;
    flex-direction: row;
}

.tag {
    font-size: 0.8rem;
    height: fit-content;
    width: fit-content;
    border-radius: 10px;
    padding: 0px 5px;
    margin-right: 2px;
    color: white;
    background: linear-gradient(to right, #742aff, #5d00c7, #742aff);
}

.gray-bar {
    height: 35px;
    width: calc(100% + 40px);
    margin-left: -20px;
    background-color: #dee1e6;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.circle-red {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
    margin-left: 10px;
}

.circle-yellow {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffbc2f;
    margin-left: 7px;
}

.circle-green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2ac840;
    margin-left: 7px;
}

.profile-image {

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px;
    object-fit: cover;
    border: #ffff00 solid 2px;
    box-shadow: 0 0 15px #ffff00;
}


.bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background-color: #555555;
}

.bottom-info p {
    margin: 0;
    padding-left: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    height: 100%;
    color: #ffffff;
    text-decoration: none;

} */

.social-icons li {
    list-style: none;
}

.social-icons a:hover {
    background-color: rgba(0, 0, 0, 0.0);
}

.social-icon {
    display: block;
    height: 30px;
    width: fit-content;
}