﻿#home {
  font-family: 'Roboto', sans-serif;
  color: white;
  margin-top: 3rem;

  @media (max-width: 1024px) {
    margin-top: 2rem;
  }
  @media (max-width: 768px) {
    margin-top: 1.5rem;
  }

  .home-container {
    position: relative;
    width: 95%;
    margin: 0 auto;
  }

  .home-img {
    width: 100%;
    border-radius: 2rem;
    display: block;
  }

  .quote {
    position: absolute;
    top: 45%;
    left: 15%;
    width: 25%;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: left;

    .quote-text {
      font-weight: bold;
    }

    .quote-author {
      font-style: italic;
      margin-bottom: 1rem;

      @media (max-width: 1024px) {
        margin-bottom: 0.5rem;
      }

      @media (max-width: 768px) {
        margin-bottom: 0.5rem;
      }
    }

    .quote-button {
      background-color: white;
      width: min-content;
      display: block;
      text-align: center;
      white-space: nowrap;
      color: black;
      border: none;
      border-radius: 5rem;
      text-decoration: none;
      padding: 0.5rem 1rem;

      @media (max-width: 1024px) {
        padding: 0.3rem 0.6rem;
      }

      @media (max-width: 768px) {
        padding: 0.2rem 0.4rem;
      }
    }


    @media (max-width: 1024px) {
      font-size: 0.7rem;
      width: 30%;
    }

    @media (max-width: 768px) {
      font-size: 0.4rem;
      width: 40%;
    }
  }

  .embedded_music {
    position: absolute;
    top: 46%;
    right: 10%;
    width: 25%;

    @media (max-width: 1024px) {
      display: none;
    }
  }
}
.buffer {
  height: 10rem;

  @media (max-width: 1024px) {
    height: 5rem;
  }
}
