main{
    display: flex;
    justify-content: center;
    align-items: center;
}
body{
    background-color: rgb(3, 2, 2) ;
    font-family: Arial, Helvetica, sans-serif;
}
footer{
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    color: aliceblue;
}
.navlinks li a{
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    color:rgb(170, 163, 163);
    transition: 0.4s;
    text-decoration: none;
}
nav{
    width: 100%;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.01) ;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap ;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(183, 15, 15);
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 0.00);
    border: none;
    cursor: pointer;
}
.navlinks{
    display: flex;
    list-style: none;
    text-decoration: none;
    gap: 2rem;
}
.navlinks li a:hover{
    color: rgb(183, 15, 15);
    text-shadow: 0 0 10px rgb(183, 15, 15);
}
.btn{
    background-color: rgb(183, 15, 15);
    color: white;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: medium;
    box-shadow: 0 0 15px rgb(183, 15, 15);
}
.btn:hover{
    background-color:rgb(204, 30, 30) ;
    box-shadow: 0 0 15px rgb(237, 40, 40);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.jetbrains-mono-regular {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
*{
    font-family: 'JetBrains Mono';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.HTML{
    color: orangered;
}
.CSS{
    color:blue;
}
.flip-card{
    width: 250px;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}
.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1.5s;
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner{
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-front2,
.flip-card-front3,
.flip-card-back{
   position: absolute;
   width:100%;
   height:100%;
   top: 0;
   left: 0;
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
   border-radius:24px ;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.flip-card-front{
    background-image: url(img/spotify.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flip-card-back {
    background: rgb(182, 0, 0) ;
    color: rgb(0, 0, 0);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0px 18px;
    box-sizing: border-box;
}
.projects-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
    margin-bottom:50px;
}
.flip-card-front2{
    background-image: url(img/guitar.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flip-card-front3{
    background-image: url(img/facetime.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.Hobbies-title{
  text-align: center;
  font-size: 45px;
  margin: 40px 0 25px 0;
  color: rgb(131, 0, 0);
  font-weight: 700;
}
@media (max-width: 768px){
        .projects-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap:30px;
        }
}