*{
    margin: 0%;
    padding: 0%;
}

/* Navigation & Header */

header{
    background-color: #333;
    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;
    background-color: antiquewhite;
    border: solid 16px antiquewhite;
    border-radius: 2px;
}

nav a:hover{
    color: lightsalmon;
}

h1{
    padding: 10px 30px;
}

/* Main Content */

main{
    background-color: antiquewhite;
    min-height: calc(100vh - 80px - 40px);
    padding:30px
}

main section{
    margin: 20px 0px;
}

img {
    width: 300px;
    height: auto;
}

.img_l, .img_r{
    border: 3px solid black;
    border-radius: 30px;
    padding: 20px;
    min-height: 500px;
}

.n_img{
    border: 3px solid black;
    border-radius: 30px;
    padding: 20px;
    min-height: 100px;
}

.stps{
    border: 3px solid black;
    border-radius: 30px;
    padding: 20px;
    min-height: 1000px;
}

.img_l h3, .img_r h3{
    text-align: center;
    font-family: "Tomorrow";
    font-size: 30px;
    margin-bottom: 20px;
}

.img_l img{
    float: left;
    display: block;
    border-radius: 15px;
    margin: 0 20px 20px 0;
}


#print_button {
    border: #333;
    border-radius: 20px;
    padding: 10px;
    font-size: 20px;
    background-color: burlywood;
}

.featured {
    border: 3px solid black;
    border-radius: 10px;
    padding: 20px;
    min-height: 120px;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured h2, .featured a {
    flex: 1;
}

.featured img{
    padding: 10px;
    border-radius: 15px;
    width: 100px;
    height: auto;
}

.links a{
    padding: 10px;
}

section section{
    padding: 10px;
}

/* Forms */

.input_group{
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: color-mix(in hsl increasing hue, antiquewhite 80%, gold 20%);
}

/* Tables */

table{
    width: 800px;
    max-width: 800px;
    font-size: 25px;
    border-collapse: collapse;
    overflow-wrap: normal;
}

td{
    border: 2px solid black;
    padding: 10px;
}

.strg{
    font-weight: bold;
}

/* Footer */

footer{
    height: 40px;
    color: antiquewhite;
    background-color: #333;
}

footer p {
    padding: 10px 10px;
}

footer a:link{
    color: antiquewhite;
    text-decoration: underline;
}
footer a:visited{
    color: lightsalmon;
    text-decoration: underline;
}

.hom{
    padding-left: 20px;
    padding-right: 20px;
}

/* Media Rules */
@media (max-width: 768px) {
    header{
        height: 130px;
        padding: 10px;
    }
    nav ul{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    nav{
        text-align: center;
    }

    h1, main, footer p{
        padding-left: 15px;
        padding-right: 15px;
    }

    footer{
        height: 50px;
    }

    main{
        min-height: calc(100vh - 130px - 50px);
    }
    
    table{
        width: 240px;
        font-size: 20px;
    }
}
