@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
.nav {
  width: 100%;
  height: 50px;
  background-color: #333;
}
.nav a {
  font-size: 18px;
  color: #ccc;
}

.album-card {
  width: 100px;
  height: 100px;
}
.album-card img {
  width: 100%;
  opacity: 50%;
}
.album-card div {
  position: relative;
  top: -50%;
  color: #333;
  box-shadow: inset 10px 30px 50px white;
}


.image-tile {
  object-fit: cover;
  width: 400px;
  height: 400px;
  border-radius: 5px;
}
.video-tile {
  width: 400px;
  height: 400px;
  border-radius: 5px;
}

.full-image {
  width: 100%;
}

.video {
  position: relative;
}

.video svg {
  position: absolute;
  bottom: 2px;
  left: 5px;
  color: black;
}
