@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    background-image: url(../resources/myPortfolioimg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: keeps background fixed while scrolling */
    width: 100%;
    height: 100vh;
}
li,a,button{
    font-family: 'Roboto Mono', monospace;
    font-weight:400;
    font-size: 18px;
    color:black;
    text-decoration: none;
}

header{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding: 10px 8%;
    background-color: blanchedalmond;
}

.nav-links{
    list-style: none;
    display: flex;
    gap: 80px;
}

.logo{
    cursor: pointer;
    background-color: rgb(255, 99, 71);
    font-size: 20px;
    font-weight: 1000;
    border : none;
    border-radius: 4px;
    padding: 5px 10px;
}
.logo:hover{
    background-color: rgba(255, 99, 71,0.1);

    border : none;
}

.nav-links li{
    display: inline-block;
    padding: 0px 10px;
}

.nav-links li a{
    transition: all 0.4s ease 0s;
}

.nav-links li a:hover{
    color: blue;
}

button{
    padding: 10px 20px;
    background-color: rgba(0,156,167,1);
    border: 1px solid black;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}

button:hover{
    background-color: rgba(0,156,167,0.4);
}

.logo:hover{
    color: rgba(0,0,155,0.4);
    transition: all 0.4s ease 0s;
}

.hero{
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    padding : 40px 0;
}
.hero p{
    padding: 20px;
}

.myPic img{
    max-width: 20cm;
    height: 5cm;
    border-radius: 10px;
}
.myPic{
    text-align: center;
    padding: 20px;
}

.insta img{
    position: fixed;
    bottom: 20px;
    right: 20px; /* or left: 20px; for left side */
    width: 40px;
    height: 40px;
    z-index: 1000;
}
.insta img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}