* {
          margin: 0;
          padding: 0;
}

html {
          height: 100%;
          scroll-behavior: smooth;
}

body {
          height: 100%;
          background-color: rgb(44, 47, 51);
}

nav {
          background-color: rgb(35, 39, 42);
          border-radius: 10px;
          align-items: center;
          display: flex;
          justify-content: space-between;
          color: white;
}

.nav_logo {
          margin: 20px;
          font-size: 30px;
          font-family: sans-serif;
          font-style: italic;
}

.nav_logo img {
          height: 110px;
          width: 160px;
} 

nav ul {
          display: flex;
}

nav ul li {
          height: 100%;
          padding: 30px;
          list-style-type: none;
          display: block;
}

nav ul li a {
          color: white;
          text-decoration: none;
          font-size: 22px;
          font-family: sans-serif;
}

.toggle_button {
          position: absolute;
          top: 25px;
          right: 25px;
          display: none;
          flex-direction: column;
          justify-content: space-between;
          width: 30px;
          height: 23px;
}

.toggle_button .bar{
          height: 4px;
          width: 100%;
          background-color: white;
          border-radius: 100px;
} 

.start_container img {
          height: 300px;
          top: 100px;
          left: 5px;
          position: relative;
          border-radius: 10px;
          background: rgb(35, 39, 42);
}
.start_text {
          background: rgb(35, 39, 42);
          width: 72%;
          position: relative;
          color: white;
          left: 470px;
          right: 500px;
          border-radius: 10px;
          bottom: 185px;
          font-size: 10px;
          font-family: Arial;
}

@media (max-width: 750px) {
          .start_container img {
                    position: relative;
                    height: 150px;
          }

          .start_text {
                    position: absolute;
                    right: 50px;
                    left: 250px;
                    top: 195px;
                    bottom: 620px;
                    width: 65%;
                    font-size: 7px;
          }
}