*{
    margin: 0%;
    padding: 0%;
}


/* Navigation & Header */

header{
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    height: 80px;
}

nav{
    flex: 1;
}

nav ul{
    display: flex;
    justify-content: space-evenly;
}

nav ul li{
    list-style: none;
}

nav a{
    color: black;
    text-decoration: none;
    font-size: 20px;
    border: 16px;
    border-radius: 2px;
}

/* Main Code */

main{
    min-height: calc(100vh - 80px - 40px);
    padding:30px;
}

h1{
    color: #333;
    padding-bottom: 10px;
}

section{
    padding-top: 10px;
}

.imgf1 {
    border-style: solid;
    border-color: #333;
    border-width: 2px;
    border-radius: 5px;
    animation: fadeIn 10s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateX(5px); }
    10% { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer{
    background-color: whitesmoke;
    height: 40px;
}

footer p{
    padding: 10px 10px;
}