body {
    background-color: #6ef1e7;
    font-family: Arial, Helvetica, sans-serif
}


/* Header Styling */
header {
    background-color: #4eb1a967;
    color: white;
    padding: 10px;
    text-align: center;
    border: 5px solid black;
    border-radius: 25px;
    box-shadow: 0px 0px 2.25px 2.25px black;
    color: white;
    padding: 10px;
}



.box-1 {
    height: 200px; /* Height of the box */
    width: 800px; /* Width of the box */
    background-color: rgba(74, 223, 228, 0.301); /* Background color of the box */
    margin-left: 250px; /* Spacing of the box left side */
    border-radius: 25px; /* How smooth the border is */
    border: 5px solid black; /* Making the border */
    text-align: center; /* Alignning text center */
    display: flex; /* Flexbox for centernig */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal Centering */
}

.box-2 {
    height: 200px;
    width: 800px;;
    background-color: rgba(74, 223, 228, 0.301);
    margin-right: 20px;
    border-radius: 25px;
    border: 5px solid black;
}

.container{
    display: flex; /* Aligns boxes together */
    column-gap: 300px; /*Seperates boxes to the side */
    margin-top: 110px; /* Adds space below the header */
}

.box-2-desc{
    display: flex;
    align-items: center;
}

h1{
    text-align: center;
}

nav{
        margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 12px;
    text-align: center;
    font-size: 19px;

}

h3{
    text-align: center;
    font-size: 30px;
}
