*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #778899;
}
.nav-links{
    display: flex;
    gap: 20px;
    list-style: none;
}
.nav-links li a{
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    transition: transform 0.3s ease;
}
.nav-links li a:hover{
    transform: scale(1.15);
    color: wheat;
    background-color: lightslategray;
}
.menu-btn{
    display: none;
    font-size: 28px;
    cursor: pointer;
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: wheat;
    color: cornflowerblue;
}

.container{
    width: 100%;
    height: 800px;
    background-color: lightgrey;
    padding: 10px;
}
.container p{
    font-size: 20px;
}
.profile img{
    width: 10%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: left center;
}
.container h2, p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.footer{
    display: flex;
    justify-content:center;
    align-items:center;
    height: 150px;
    width: auto;
    background-color: lightslategray;
    color:whitesmoke
}
.link ul {
    display: flex;
    gap: 10px;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
.link li a{
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: lightsteelblue;
}
.link li a:hover{
    text-decoration: underline;
    color: whitesmoke;
}

