* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100hv;
    background-image: url(Main2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.Main-header {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    height: 200px;
    width: 100%;
}

h1 {
    font-size: 4.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

p {
    width: 80%;
    text-align: center;
    font-size: 1.2rem;
    color: #fafafa;
}
nav {
    background: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-self: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
}

nav a:hover {
    background: #f0f0f0;
}

nav li:first-child {

    margin-right: auto;
  
}


.menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgb(175, 169, 169);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.menu li {
    width: 100%;
   
}

.menu a {
    width: 100%;
}

/* Aninmation of text */

.animate {
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width: 700px) {
    .hideOnMobile {
        display: none;
    }
  

}
