.navbar {
    width: 90%;
    height: 60px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 20px 16px;
    transition: all 0.2s ease;
}

.navbar a:hover {
    background-color: white;
    color: red;
}

.content {
    width: 90%;
    margin: 0 auto;
    justify-content: left;
    align-items: left;
}

#Personal-Information h1 {
    color: brown;
    font-size: 2rem;
}
.photo{
    float: right;
    margin-top: 0rem;
    border : 3px solid black;
    padding: 5px;
    border-radius: 10px;
    border: solid 2px black;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.photo:hover{
    transform: scale(1.10);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}


.caption{
    text-align:center;
    font-size: 1rem;
}


#Skills h1 {
    color: brown;
    font-size: 2rem;
}

#Skills ul {
    list-style-type: disc;
}

#Education h1 {
    color: brown;
    font-size: 2rem;
}

footer {
    background-color: aliceblue;
    text-align: center;
    padding: 0.2rem;
    width: 100%;
    bottom: 0;
}