* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    background-color: white;
    overflow-x: hidden;
    font-family: 'roboto','arial';
}

nav {
    display: flex;
    height: 50px;
    width: 100%;
    justify-content: space-between;
    line-height: 70px;
    padding: 0 100px;   
    padding-top: 30px;
    padding-left: 0;
}

nav ul {
    display: flex;
    list-style-type: none;
    line-height: 80px;
}

h1 {
    color: black;
    font-weight: bold;
    font-size: 35px;
    text-shadow: 8px 22px 9px black;
}
h1 span {
    color: #f7640f;
    font-family: 'roboto','arial';
    font-style: inherit;
    text-shadow: 8px 22px 9px orangered;
}

nav ul li {
    color: white;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    color: black;
    font-size: 20px;
    text-shadow: 8px 17px 9px white;
    position: relative;
}

nav ul li a:hover {
    color: orange;
    transform: scale(1.5);
}

button {
    background-color:  transparent;
    border-radius: 20px;
    padding: 7px 15px;
    border: 0;
    font-weight: bold;
    text-decoration: none;
    outline: 0;
    color: white;
    border: 2px solid black;
    box-shadow: rgba(0, 0, 0, 5);
    filter: drop-shadow(8px 17px 7px white);
    cursor: pointer;
}
button:hover {
    transform: scale(1.3);
    filter: drop-shadow(8px 4px 10px rgb(239, 194, 194));
    
}
button a {
    color: black;
    font-weight: bold;
    font-size: medium;
    text-decoration: none;
}
button span {
    color: orange;
    text-shadow: 8px 22px 9px orangered;
}
.logo img {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: space-around;
    filter: drop-shadow(5px 5px 7px white);
}
.logo {
    line-height: 70px;
    margin-left: 40px;
}
object {
  position: relative;
    top: 80px;
    left: 123px;
    border-radius: 7px;
    border: 1.5px solid #fff; 
}

main span h2 {
    position: relative;
    top: 80px;
    left: 130px;
    color: #fff;
    gap: 20px;

}

@media screen and (max-width: 918px) {
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;;
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    background-color: white;
    overflow-x: hidden;
}
  
nav {
    display: flex;
    flex-wrap: wrap;
    height: 50px;
    width: 100%;
    justify-content: space-between;
    line-height: 70px;
    padding: 0 100px;   
    padding-top: 30px;
    padding-left: 0;
}

.logo {
    display: flex;
    margin: 0 0 0 40px;
}

.logo li {
    margin: 0 0 0 10px;
    list-style-type: none;
    font-weight: bold;
    font-size: medium;
    font-family: arial;

}

.nav-links {
    display: none;
    list-style-type: none;
    line-height: 50px;
    margin-top: 100px;
    position: absolute;
    right: 10px;
    margin-top: 60px;
    align-items: center;
}

.nav-links li {
    margin: -10px 10px;
}

.nav-links li a {
    text-decoration: none;
    font-weight: bold;
    font-size: medium;
    font-family: arial;
    color: black;
}

.menu {
    cursor: pointer;
}

.menu-line {
    height: 2px;
    width: 15px;
    background-color: #000000;
    margin-bottom: 3px;
    position: relative;
    display: block;
    margin-left: 20px;
    
}

form {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin-right: -50px;        
}

button {
    margin-right: 10px;
    padding: 10px;
    border: 1.5px solid #fff; 
    background-color: transparent;
}

button a {
    color: black;
    font-weight: bold;
    font-size: medium;
    text-decoration: none;
    font-family: arial;
}
    
.show {
    display: block;
}



}