* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
}

html,
body {
  width: 100%;
  height: 100%;
  color: white;
  font-family: "Rajdhani", sans-serif;
  overflow: hidden;
}
#container{
  display: initial;
}
#bottom {
  width: 100%;
  height: 100%;
  position: relative;
}
#bottom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top {
  pointer-events: none;
  width: 100%;
  background-color: transparent;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  overflow: hidden;
}
nav {
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
  width: 90vw;
  margin: auto;
}
nav img {
  height: 3em;
}
.navleft,
.navright {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navleft h3, .navright h3{
  pointer-events: all;
  cursor: pointer;
}
#main {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90vw;
  margin: auto;
}

#mainleft,
#mainright {
  padding: 10vh 0px;
  width: 100%;
}
.headings {
  /* background-color: red; */
  height: 18vh;
  overflow: hidden;
  font-size: 3em;
  position: relative;
  text-wrap: nowrap;
}
.headings h1:first-child{
  top: 0%;
}
.headings h1{
  position: absolute;
  top: 100%;
  left: 0%;
}

#mainleft button {
  padding: 1vh 1vw;
  font-size: 1.3em;
  margin-top: 4vh;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  pointer-events: all;
  cursor: pointer;
}
#mainright {
  width: 17vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
#box {
  width: 17vw;
  height: 20vh;
  margin-top: 2vh;
  margin-bottom: 3vh;
}
#box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainright p:last-child {
  margin-top: 5vh;
}
#message{
  display: none;
}

@media (1025px < width < 1200px){
  #container{
    display: none;
  }
  #message{
    display: block;
    height: 100vh;
    width: 100%;
    background-color: rgb(210, 210, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #message h2{
    font-size: 3vw;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    color: blue;
  }
}

/* Media Query for Large Devices. */
@media (769px < width < 1024px) {
	#container{
    display: none;
  }
  #message{
    display: block;
    height: 100vh;
    width: 100%;
    background-color: rgb(193, 255, 193);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #message h2{
    font-size: 3vw;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    color: green;
  }
}
/* Media Query for Medium Devices. */
@media (481px < width < 768px) {
  #container{
    display: none;
  }
  #message{
    display: block;
    height: 100vh;
    width: 100%;
    background-color: rgb(244, 255, 218);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #message h2{
    font-size: 3vw;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    color: rgb(116, 116, 2);
  }
}
/* Media Query for Small Devices. */
@media (0px < width < 480px) {
  #container{
    display: none;
  }
  #message{
    display: block;
    height: 100vh;
    width: 100%;
    background-color: rgb(255, 208, 208);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #message h2{
    font-size: 4vw;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    color: rgb(255, 0, 0);
  }
}