body {
    background-color: wheat;
    color: rgb(63, 54, 54);
    min-height: 100vh;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid;

    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 15px;
    background-color: aliceblue;
    border-radius: 10px;
    
    nav a {
        color: rgb(63, 54, 54);
        border: 2px solid rgb(63, 54, 54);
        text-decoration: none;
        padding: 0.5rem;
        font-size: 1.5rem;
        border-radius: 10px;

        &:hover {
            background-color: rgb(196, 170, 123);
        }
    }
}

.btn{
    text-decoration: none;
    font-weight: 500;
    

}

.projects-container {
   display: flex;
   justify-content: center;
   flex-direction: column;
   gap: 20px;
   align-content: center;
   


}

.project-card {
    text-decoration: none;
    padding: 15px;
    background-color: rgb(196, 170, 123);
    border-radius: 15px;
    border: 2px solid #240e0e;
}


.project-card a {
    color: #420808;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
}

.project-card:hover{
   background-color:rgb(197, 134, 72);
}

#projects-title{
    text-align: center;
     color: #420808;
}

.text{
    color: #552d2d;
}

#my-name{
    color: #790606;
}

@media only screen and (min-width:480px){
    .projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#projects-title{
    text-align: center;
     color: #420808;
}

}

@media only screen and (min-width:1050px){
    .projects-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

#projects-title{
    text-align: center;
     color: #420808;
}

}





