/* General Page */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: yellow;
    background-image: url("/pictures/1328868.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.navbar {

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(15,23,42,.85);

    backdrop-filter: blur(10px);

    padding:14px;

    position:sticky;
    top:0;

    z-index:1000;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.navbar a,
.dropbtn {

    color:#e5e7eb;

    text-decoration:none;

    padding:14px 18px;

    font-size:15px;

    border:none;

    background:none;

    cursor:pointer;

    transition:0.2s;

}


.navbar a:hover,
.dropdown:hover .dropbtn {

    color:#60a5fa;

}


.dropdown {

    position:relative;

}


.dropdown-content {

    display:none;

    position:absolute;

    background:#111827;

    min-width:180px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:8px;

    overflow:hidden;

}


.dropdown-content a {

    display:block;

    padding:10px 12px;

    color:#e5e7eb;

}


.dropdown-content a:hover {

    background:#1f2937;

}


.dropdown:hover .dropdown-content {

    display:block;

}

/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0,0,0,.3);
}

.dropdown-content a {
    display: block;
    color: black;
    padding: 12px;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Header */

header {
    text-align: center;
    padding: 20px;
}

.contact-info {
    font-size: 18px;
}


/* Experience */

.experience {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.experience h2 {
    text-align: center;
}

.experience ul {
    list-style-type: square;
    line-height: 1.8;
}

.experience li {
    font-size: 18px;
}