*{
    color: white;
}

body{
    background-image: url("./images/background-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    font-family: Tahoma;
}
.resume2{
    display: none;
}

header{
    background-image: url("./images/background-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a{
    text-decoration: none;
    color: lightgray;
}


.brand-name {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}

.resume-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1E90FF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.resume-button:hover {
    background-color: #63B3ED;
}

.button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1E90FF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #63B3ED;
}

.button2 {
    display: inline-block;
    padding: 10px 25px;
    background-color: #182376;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button2:hover {
    background-color: #2736a5;
}

.job{
    color: #1E90FF;
}

.my-picture{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
}

.personal-card{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px;
}

.data{
    margin-top: 30px;
    text-align: left;
}

.image{
    text-align: center;
    margin-top: 75px;
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;

    background-color: #0B0F1A;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

body {
    margin: 0;
    padding-top: 70px;
    overflow-x: hidden;
}

.brand-name h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}


.links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #1E90FF;
}

.cards1 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    color: white;
}

.cards2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

.card{
    width: 50%;
    border-radius: 5px;
    margin: 30px;
    padding: 30px;
    background-color: #000f36;
}

hr{
    color: #414652;
}

.cards3{
    margin-top: 1px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    padding-bottom: 50px;
    color: white;
}

.only-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    margin-top: 110px;
}

.myicon{
    font-size: 100px;
}

.p1{
    font-size: 20px;
}

.icons{
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-size: 20px;
    margin-top: 50px;
}
.icon{
    padding: 10px;
    height: 50px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.cards{
    padding: 30px;
}
@media (max-width: 1200px) {
    .icons{
        margin-top: 20px;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .icon{
        margin-top: 50px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        width: 90%;
    }
}

.footer{
    background-color: #0B0F1A;
    text-align: center;
    height: 200px;
    padding-top: 80px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

.links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.links a {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger {
    position: relative;
    z-index: 1000;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
}


@media (max-width: 900px) {
    body{
    background-image: url("./images/IMG_4271.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    font-family: Tahoma;
}
    .brand-name{
        display: none;
    }
    .resume-button{
        display: none;
    }
    .links {
        position: fixed;
        inset: 0;
        background: #0b0f5e;

        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        padding-left: 40px;
        gap: 25px;

        display: none;
        z-index: 999;
    }

    .links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }
    .personal-card{
        display: block;
        padding: 15px
    }
    .data{
        font-size: 13px;
    }
    .cards2{
        display: block;
    }
    .only-cards{
        display: block;
    }
    .icons{
        display: block;
        justify-content: center;
        align-items: center;
    }
    .icon{
        font-size: 17px;
        justify-content: center;
    }
    .resume-button2 {
        display: inline-block;
        padding: 10px 25px;
        background-color: #1E90FF;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .resume-button2:hover {
        background-color: #63B3ED;
    }
    .resume2{
        margin-top: 10px;
        display: block;
    }

}


