/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("blu.jpg");
  background-repeat: repeat-y;
  color: black;
  font-family: Verdana;
  text-align: center;
}

.rod {
   background-color: white;
   border: 5px solid rgb(105, 185, 255);
   border-radius: 25px;
   margin: 5px;
   padding: 1px 8px ;
}

.bog {
   border: 5px solid white;
   margin: 5px;
   padding: 10px;
}

.box {
    width: 1200px;
    height: 1000px;
    border: 5px solid rgb(35, 123, 190);
    padding: 10px;
    margin: 10px;
    background-color: rgb(135, 223, 290);
    border-radius: 30px;
}

.op {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mg {
  border-radius: 15px;
  margin-left: -15px;
}
.ig {
  border-radius: 15px;
  margin-left: 15px;
}

