* {
   margin: 0;
   padding: 0;
}

header {
   position: sticky;
   top: 0;
}

nav {
   background-color: pink;
   height: 83px;
}

main {
   background-color: black;
   color: white;
   padding: 34px;
}

.container {
   background-color: green;
   margin: 12px 34px;
   padding: 55px 23px;
   text-align: center;
}

.box1 {
   background-color: palevioletred;
   height: 70vh;
   width: 40%;
   display: inline-block;
   margin: 0 50px 0 0;
}

.box2 {
   background-color: blue;
   height: 70vh;
   width: 40%;
   display: inline-block;
   margin: 0 0 0 50px;
}

.text-box {
   padding: 34px;
   border: 2px solid white;
   margin: 50px 34vw;
   font-size: 2em;
   border-radius: 13px;
   width: 450px;
   text-align: center;
}

.orange-box {
   height: 40px;
   width: 40px;
   background: rgb(223, 30, 30);
   position: fixed;
   bottom: 277px;
   left: 1073px;
   border-radius: 50%;
}

footer {
   height: 100px;
   background-color: rgb(181, 220, 255);
}