@import url("https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");

body {
    background-color: #1A1D22;
    margin: 0;
    padding: 0;
} 
.titles {
    font-weight: bolder;
    color: #4370A9;
    font-size: 5vw;
    padding: 30px;
    padding-left: 300px;
}
.font {
    font-family: "Quantico";
    font-style:bold;
}
.divider {
    height: 0.3cm;
    background-color: #4370A9;
    color: #4370A9;
    margin-left: 0;
    float:none;
    border: none;
}
.navigators {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-bar ul {
    list-style-type: none;
    padding-left: 300px;
    margin: 0;
    overflow: hidden;
}
.nav-bar a.selected {
    text-decoration: underline;
    color: #9bb3d2;
}
.nav-bar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.nav-bar li {
    float: left;
    font-size: 1.5vw;
}
.nav-bar-right {
    padding-right: 300px;
}
.icons {
    color: #4370A9;
}
.titles:hover {
    color: #4370A9 !important;
    text-decoration: none !important;
}
a.font:hover {
    color: #9bb3d2;
    text-decoration: underline;
}
.project-title {
    font-size: 40px !important;
    font-family: "Quantico";
    color: #4370A9;
    font-weight: bolder;
    width: 100%;
    text-align: center;
    flex-shrink: 0
}
.boxes {
    list-style-type: none;
    margin: 0;
    padding: 50px;
    box-sizing: border-box;
    width: 100%;
}
.box {
    position: relative;
    border-radius: 20px;
    background-color: #14161a;
    width: calc(100% - 200px);
    height: 600px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
}
.project-list {
    width: calc(100% - 20px);
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}
::-webkit-scrollbar {
    display: none;
} 
.project {
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 400px;
    height: 450px;
    background-color: #4370A9;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.div {
    height: 10px;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #1A1D22;
    border-radius: 20px;
}
.single-project-title {
    font-family: "Quantico";
    font-weight: bolder;
    font-size: 30px;
    color: #14161a;
    margin-top: 20px;
}
.project-description {
    margin-left: 40px;
    margin-right: 40px;
    font-family: "Quantico";
    font-weight: bolder;
    font-size: 20px;
    color: #14161a;
}
.project-link {
    text-decoration: none;
    margin-top: auto;
}
.project-button {
    background-color: #1A1D22;
    color: #4370A9;
    font-family: "Quantico";
    font-weight: bolder;
    font-size: 30px;
    text-decoration: none;
    width: 200px;
    height: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
}
.project-button-icon {
    margin-right: 10px;
}
.project-scroll-button {
    margin-top: 200px;
    width: 100px;
    height: 100px;
    background-color: #4370A9;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.project-scroll-button-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-200%);
}
.project-scroll-button i {
    font-size: 50px;
}