*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/*HEADER*/
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
    z-index: 1000;
}

.logo
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img
{
    width: 90px;
}

nav ul
{
    display: flex;
    list-style: none;
    gap: 50px;
}

nav a
{
    text-decoration: double;
    color: #07501d;
    font-weight: bold;
}

/*HERO*/
main
{
    margin-top: 70px;
    margin-bottom: 60px;
    line-height: 2;
}

.hero
{
    height: 700px;
    background-image: url(Gh.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero
{
    font-family: arial, sans-serif;
    font-size: 2rem;
    text-align: center;
    letter-spacing: normal;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.tag
{
    font-style: italic;
    color: red;
    font-weight: bolder;
}

/*COLOR CLASSES*/
.exp{color: #E03C31;}
.TB{color: #fcd116;}
.GH{color: #006b3f;}

/*WELCOME*/
.Welcome
{
    padding: 60px;
    text-align: center;
}
.Welcome h2
{
    margin-bottom: 20px;
    font-weight: 600;
}
.Welcome p
{
    max-width: 1000px;
    margin: auto;
    line-height: 1;
    padding: 20Spx;
}

.anthem
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(to right, red,yellow,green);
    padding: 20px;
    border-radius: 10px;
    width: auto;
    height: 150pxpx;
    margin: auto;
}
/*FOOTER*/
footer
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}