/* @CHARSET "ISO-8859-1"; */
/* Reset CSS
 * --------------------------------------- */

 @font-face {
    font-family: Oswald;
    src: url(../font/Oswald-Regular.ttf);
  }
  
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  form,
  fieldset,
  input,
  textarea,
  p,
  blockquote,
  th,
  td {
    padding: 0;
    margin: 0;
  }
  a {
    text-decoration: none;
  }
  table {
    border-spacing: 0;
  }
  fieldset,
  img {
    border: 0;
  }
  address,
  caption,
  cite,
  code,
  dfn,
  em,
  strong,
  th,
  var {
    font-weight: normal;
    font-style: normal;
  }
  strong {
    font-weight: bold;
  }
  ol,
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  caption,
  th {
    text-align: left;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
    /* color:#444; */
  }
  q:before,
  q:after {
    content: "";
  }
  abbr,
  acronym {
    border: 0;
  }
  
  /* ***************************************** */
  /* ***************************************** */
  
  /* custom codes */
  
  
  body{
    font-family: "Oswald", sans-serif;
    background-color: #bbdee0;
  }
  
  
  .bg-right, .bg-left {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .bg-right {
    right: 0;
    background-image: url('../img/buoyancy-right.jpg');
  }
  
  .bg-left {
    left: 0;
    background-image: url('../img/buoyancy-left.jpg');
  }
  .bg-left img {
    position: fixed; /* Ensures the logo stays fixed on the screen */
    top: 10px; /* Distance from the top of the screen */
    left: 20px; /* Distance from the left of the screen */
    width: 70px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain the aspect ratio of the logo */
    z-index: 1000; /* Keeps the logo above all other content */
  }
  
   /* ***************************************** */
/* sections */


.section {
    background: #bbdee0;
    color: #000000;
    text-align: center;
  }
  
  #section0 img {
    height: 40%;
    max-width: 40%;
    position: relative;
    
    
    
  }
  
  #section1 i {
    font-size: 40px;
    color: #000000;
  }
  
  #section1 a {
    padding: 20px;
  }
  
  #section1 .copyright {
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
  }

  /* buttons style */
  .button-container {
    display: flex;
    flex-direction: column; /* Stacks buttons vertically */
    align-items: center; /* Centers buttons horizontally */
    margin-top: 25px;
  }
  
  .haag-btn {
    display: flex; /* Flexbox for image centering */
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
    width: 280px; /* Set a fixed width for the buttons */
    height: 70px; /* Set a fixed height for the buttons */
    
    background-color: #ffffff;
    border: 2px solid black;
    border-left: #aa0205 6px ridge;
    border-bottom: #aa0205 6px outset;
    margin: 10px 0; /* Adds vertical spacing between buttons */
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

  .haag-btn:hover {
    background-color: #aa0205;
    color: #ffffff;
  }

/* Specific styles for each button */
.bandcamp-btn img {
    width: 90%; 
    height: 90%;
    object-fit: cover;
  }
  
  .spotify-btn img {
    object-fit: contain;
  }
  
  .tidal-btn img {
    object-fit: contain;
  }
  
  .apple-music-btn img {
    width: 72px;
    object-fit: cover;
  }
  .amazon-music-btn img {
    width: 70px;
    object-fit: cover;
  }

 

  /*responsive codes*/
  
  @media only screen and (max-width: 1300px) {
  

    #section0 img {
     height: 60%;
     max-width: 80%;
    }
  }
