@import url(/style/colors.css);

@import url(/style/fonts.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}


html,
body {
    --space: 3rem;
    gap: var(--space);
    height: auto;
    width: 100%;
}


.navbar-light #navbarSupportedContent {
    justify-content: flex-end;
}

nav ul li {
    height: auto;
    width: auto;
    padding: 0.4rem 0.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li:hover {
    background: var(--colorHover);
    border-bottom: 2px solid var(--borderColor);
}

nav ul li a {
    font-weight: bolder;
}

.container .logo img {
    height: 5rem;
    width: 100%;
}

.dropdown-menu {
    width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
    height: 90px;
}

::-webkit-scrollbar-thumb {
    background: #d3cdcd;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}


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

.container .git-template img{
    width: auto;
    height: 250px;
}

.container .git-template h4{
    font-family:Roboto;
}