

body{
  /*Image for the background of the bezel*/
  background-image: url('https://i.imgur.com/WY99vi2.jpeg');
  
  /*Allow the container to be centered*/
  display: grid;
  place-content: center;
  
  /* Needed to set the height of the website and centering the container*/
  height: 100vh;
  
}

/*Class of the contrainer of the website*/
.website-container{
  background-color: #fff;
  
  /*Width of the container needed for the ratio. Can be a heigh too, but not the two at the same time.*/
  width: 1000px;
  /*Set the ratio*/
  aspect-ratio: 4 / 3;
  
  /*Put a scroll bar when the contain is bigger than the container*/
  overflow: auto;
  
  padding: 0.5rem 1.25rem;
}