* {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

#container {
    display: flex;
    margin-left: 250px;
}

#sidebar {
    background-color: rgb(34, 34, 34);
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
}

.footer-link {
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.footer-link:hover {
    text-decoration: none;
    color: inherit;
}

footer {
    color: white;
    text-align: center;
}

li {
    margin-top: 2rem;
}

p {
    color: white;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    font-size: large;
    margin: 5rem 7rem 20rem 7rem;
    color: rgb(230, 230, 230);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-detail {
    margin: 5rem 7rem 0 7rem;
    color: rgb(230, 230, 230);
}

.form-container {
    display: flex;
    flex-direction: column;
    color: rgb(230, 230, 230);
    margin: 0 20rem 0 20rem;
    justify-content: center;
    min-height: 100vh;
}

.btn {
    background-color: #7200b8; 
    color: white;
    border-radius: 30px;
}

.modal-content {
    background-color: #212529;
    color: #fff;
}

.custom-card {
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.custom-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 1450px) {
    li {
        font-size:small;
    }

    #logo {
        flex-direction: column;
    }
}

@media (max-width:1250px) {
    .form-container {
        margin: 0 5rem 0 5rem; 
    }
}

@media (max-width: 1120px) {
    li {
        font-size: xx-small;
    }
}

@media (max-width: 1020px) {
    #logo {
        font-size: medium !important;
    }

    #href {
        flex-direction: column;
        align-items: center;
    }

    #git {
        margin-bottom: 2rem;
    }
}

@media (max-width: 980px) {
    #sidebar {
        width: 200px;
    }
}