*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 5px 20px;
    height: 84px;
    display: flex;
    align-items: center;
}

header h1{
    /* width: calc(100% - 80px);
    float: right; */
    text-align: center;
    /* line-height: 84px; */
    flex: 1;
}

nav{
    background-color: rgb(255, 255, 255);
}

nav ul{
    display: flex;
    gap: 20px;
    padding: 5px 20px;
    height: 30px;
    align-items: center;
    justify-content: space-evenly;
}

nav ul li{
    list-style: none;
}

main{
    background-color: rgb(255, 122, 60);
    color: rgb(255, 255, 255);
    min-height: calc(100vh - 40px - 30px - 74px);
    padding: 20px 20px 50px 20px;
}

main p{
    /* font-size: 50px; */
}

footer{
    background-color: rgb(255, 255, 255);
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    line-height: 30px;
    color: rgb(0, 0, 0);
}