header {
    display: flex;
    background-image: linear-gradient(crimson,red, rgb(255, 8, 8));
    justify-content: center;
    margin: 0;
    padding: 0;
    text-wrap: wrap;
}

nav {
    background-color: crimson;
    position: sticky;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;


}
li {
    display: inline-block;
    padding: 5px;
    transition: 200ms ease-in;
    
} 
li:hover{
    cursor: pointer;
    transform: scale(1.1);
    
}
li a:hover{
    color: red;
}

li a {
    display: block;
    border-radius: 5px;
    text-decoration: none;
    padding: 15px;
    background-color: rgb(0, 0, 0);
    color: beige;
    padding: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 300ms ease-in;

}

body {
    margin: 0%;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h1 {
    font-size: 5.5rem;
    text-align: center;
    font-weight: 500;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: white;
}
main{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.heading {
    text-align: center;
    font-size: 1.8rem;
    width: 100%;
    border-bottom: 5px red solid;
    margin: 10px;
}

.box-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    width: 100%;

}

.boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: red 1px solid ;
    max-height: 200px;
    padding: 90px;
    margin: 5px;
    cursor: pointer;
    background-color: beige;
    transition: 400ms ease;
}

.boxes:hover{
    transform: translateY(-5PX);
    border-color: rebeccapurple;
    color: purple;
    
}

section{
    background-color: rebeccapurple;
}
section p{
    font-size: 1.5rem;
    color: white;
    padding: 15px;
    text-align: justify;
}

section h2{
    text-align: center;
    color: rgb(235, 173, 15);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


footer {
    display:flex;
    bottom: 0%;
    justify-content: center;
    min-width: 100%;
    min-height: 200px;
    background-color: brown;
    color: white;
}