*{
    margin: 0px;
    padding: 0px;
}

main p{
    font-size: 50px;
    color: red;
    font-family: 'Courier New', Courier, monospace;

}
P#second{
    color:  greenyellow;
}

p.blue{
    color: rgb(rgb(37, 37, 170));
}
header{ 
    background-color: rgb(204, 182, 57);
   height: 88px;
}

main{
    background-color: rgb(158, 157, 168);
    min-height: calc(100Vh - 124px);
}
footer{ 
    background-color: brown;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 36px;
   
}
header div {
    display: flex;
    align-items: center;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    height: 25px;
    text-align: center;
}
nav a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-shadow: 1px 25px 1px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}
nav a:hover{
    transform: translateY(-25px);
}
main img{
    width: 15%;
}
div.cont{
    display: flex;
    gap: 20px;
}
table{
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0px;
}
th{
    border: 3px solid black;
    border: fixed;
}
td{
    border: 3px solid black;
    border: fixed;
}
td{
    text-align: center;
    
}
table{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
}
tr :hover{
    background-color: brown;
    
   
}
h2{
    padding: 10px 20px 30px 40px;
    margin: 40px 30px 20px 10px;
    align-items: center;
    

}
button#print{
    float: right;
    margin: 40px 30px 20px 10px;
    padding: 30px 40px 30px 40px;
    font-size: 30px;
    background-color: rgb(153, 47, 47);
    font-weight: bold white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;}
    button#print:hover{
        background-color: white ;
    }
    @media print{
        header, footer, button#print{display: none}
    ;}