*{ 
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: Ar;
}

header {
    background-color: rgb(71, 216, 120);
    display: flex;
    align-items: center;
    height: 75px;
    padding: 7px 25px;
}

header h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    flex: 1;
    line-height: 14px;
    font-size: clamp(16px, 5vw, 55px) 
}

nav {
    background-color: rgb(24, 245, 123);
}

nav ul{ 
    display: flex;
    padding: 5px 20px;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px
}

nav ul li{
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: black;
}

#active{
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer {
    background-color: rgb(143, 142, 142);
    color: aliceblue;
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    line-height: 30px;
}

main {
    background-color: rgb(250, 250, 250);
    min-height: calc(100vh - 30px - 30px - 65px);
    padding: 40px 40px 50px 50px;
}
main p{ 
    font-size: 15px;
}
p {
    color: rgb(0, 0, 0);
}

p#my_second_paragraph {
    color: rgb(0, 0, 0);
}

p.purple {
    color: rgb(0, 0, 0);
}