@charset "utf-8"; /* CSS Document */

.dvsa-logo {
    position: fixed;      /* locks it to the screen */
    top: 120px;           /* distance from top (Header is 80px, so 120px clears it) */
    right: 250px;          /* distance from the right edge */
    
/* size adjustment */
    width: 300px;         /* set your desired width */
    height: auto;         /* keeps the proportions so it doesn't look squished */
    
/* layering */
    z-index: 500;         /* lower than your header (9999) so it goes UNDER the menu */
    
/* optional styling */
    border: 0px solid #000000; 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}




.photo {
      width: 300px;
      height: 300px;
      object-fit: cover;   /* crops the edges instead of squishing the image forcing the image to be a specific square or rectangle */
}




.magnum {
      width: 300px;
      height: 100px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      top: 200px;
      z-index: 0;
}

.samosas {
      width: 200px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      top: 0;
      z-index: 0;
}

