@font-face {
    font-family: "Cabin";
    src: url("/assets/fonts/Cabin/Cabin-VariableFont_wdth\,wght.ttf")
}



:root {
    --cream-color: rgb(225, 226, 228);
    --shadow: #3b5e8b;
    --bg-navbar: #051e3e;
}

html,
body {
    margin: 0;
    height: 100%;
    padding: 0;
}

a {
    color: black;
}

body {
    display: block;
    background: linear-gradient(0.25turn, #3b5e8b, rgb(21, 18, 82));
    color: var(--cream-color);
    height: 100dvh;
    font-family: "Cabin";
}

.my-picture {
    float: right;
    opacity: 0.5;
}

.index-icons {
    width: 50px;
    background-color: rgb(213, 140, 6);
    border-radius: 50px;
    opacity: 0.8;
    box-shadow: black 1px 1px 2px;
}

.icon-box {
    height: 200px;
    align-items: center;
}

.content {
    width: 960px;
    margin: 0 auto;
    min-height: fit-content;
}

.my-button {
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(213, 140, 6);
    font-weight: bolder;
    box-shadow: black 1px 1px 2px;
}

.my-button:hover {
    background-color: rgb(255, 189, 67);
}

.index-icons:hover {
    background-color: rgb(255, 189, 67);
}

.nav-link:hover{
    color: orange;
}

#cv {
    background-color: rgb(56, 78, 168);
    color: var(--cream-color) !important;
}

#cv:hover {
    background-color: rgb(85, 118, 248);
    ;
}

header {
    padding: 5px;
    width: 100%;
    background-color: #051e3e;
}

.project-title {
    padding-bottom: 2px;
    width: fit-content;
}

.card {
    min-height: max-content;
    padding: 10px;
    background-color: var(--cream-color);
    box-shadow: black 2px 2px 7px;
    background-color: #3b5e8b;
    color: var(--cream-color);
}

.active {
    color: white !important;
    border-bottom: 3px solid rgb(1, 38, 222);
}

.navbar-toggler {
    border-color: var(--cream-color);
    color: var(--cream-color);
    background-color: var(--cream-color);
}

.nav-link {
    color: white;
}

.my-link {
    color: orange;
}

.my-link:hover {
    color: black;
}

#logo {
    border-radius: 50px;
    max-width: 100px;
    opacity: 0.85;
    box-shadow: black 2px 2px 3px;
}

.name-shadow {
    text-shadow: 1px 1px 2px var(--shadow);
}

footer {
    /* background-color: rgb(142, 144, 142); */
    background-color: transparent;
    /* background-color: var(--bg-navbar); */
    /* border-top: 1px solid black; */
    display: flex;
    text-align: center;
    position: fixed;
    justify-content: center;
    align-items: center;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: -15px;
    right: 0;
    width: 100%;
    max-height: 10rem;

}

.monitor-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5rem;

}

.logo-name {
    width: 100%;
}

button {
    color: black !important;
}

.my-img {
    width: 30px;
}

#menu {
    margin-right: 10rem;
}

.lang-link {
    text-decoration: none;
    color: var(--cream-color);
}

.lang-link:hover {
    color: orange;

}


@media (width < 992px) {
    body {
        display: block;
        padding: 0;
    }

    main {
        max-height: max-content;
        min-height: 100%;
    }

    footer {
        height: 100%;
        /* max-height: 5rem; */
        position: static;
        bottom: 0;
        margin: 0;
        align-self: flex-end;

    }

    #menu {
        max-width: 20px;
        margin-left: 0;
    }

    .content {
        max-width: 100%;
        min-height: 90%;
        display: flex;
        flex-direction: column;
        /* margin-left: 20px; */
        width: 90%;
    }

    .card {
        width: 90%;
    }

    .btn {
        margin-left: 18px;
    }

    .monitor-flex {
        display: block;
        padding: 10px;
    }

    .my-picture {
        height: 50%;
        width: 50%;
    }

    .header {
        padding: 0px;
    }

    .active {
        width: fit-content;
    }

    .logo-name {
        margin: 0 !important;
    }

    .icon-box {
        display: flex;

    }

    .mobile-order {
        order: 0;
    }

    .title-cont {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-me {
        text-align: center;
    }



}