@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Oswald&family=Poppins:wght@300;600&family=Roboto+Slab&family=Roboto:wght@400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(1, 75, 69, 0.4), rgba(1, 66, 48, 0.2)), url('../Images/Mainpg.jpeg');
    background-size: cover;
    font-family: Poppins;
}

nav {
    padding: 30px;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
}
.logo img {
    margin: 0;
    padding: 0;
    align-items: center;
    width: 50px;
    height: 50px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
}

.menu a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid darkcyan;
    transition: 0.4s linear;
}

.menu a:hover:before {
    width: 90%;
}

.Register a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background: darkcyan;
    border-radius: 10px;
}

.Register a:hover {
    color: darkcyan;
    background: white;
    transition: 0.4s linear;
}

.header-text {
    max-width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: lightcyan;
}

.header-text span {
    letter-spacing: 5px;
}

.header-text h1 {
    font-size: 3.5rem;
    padding-bottom: 10px;
}

section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 50px;
    background: darkcyan;
    border-radius: 10px;
    letter-spacing: 5px;
}

section a:hover {
    color: darkcyan;
    background: white;
    transition: 0.4s linear;
}

footer {
    background: darkcyan;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: 'Poppins';
}