/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: "myFont";
  src: url("https://lexapreaux.neocities.org/determination.ttf");
}

.interests {
  width: 50%;
  height: 50%;
}

.buttons {
  display: flex;
  flex-direction: row;
}

.blinkies {
  display: flex;
  flex-direction: row;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 3em;
}

.img-album {
  width: 100%;
  height: 100%;
}

.carousel {
  max-width: 100%;
  display: flex;
  overflow-x: auto;
}

.group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  animation: spin 40s infinite linear;
  padding-left: 0.5em;
}

.card {
  flex: 0 0 10em;
}

.carousel::-webkit-scrollbar {
  display: none;
}

@keyframes spin {
  from {translate: 0;}
  to {translate: -100%;}
}

.red {
  color: red;
}

a {
  color: yellow;
  text-decoration: none;
}

.max {
  max-width: 100%;
}

.box {
  width: 200px;
}

p {
  text-align: justify;
  text-justify: inter-word;
}

/*
@keyframes backgroundscroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -316px -238px;
  }
}
*/

body {
  background-color: black;
  color: white;
  
  margin: 30px;
  
  font-size: 30px;
  font-family: "myFont", Verdana;
  text-shadow: 3px 3px 0px black;
  
  background-image: url("https://lexapreaux.neocities.org/battle.gif");
  background-repeat: repeat;
  background-size: 148;
  
  /*animation: backgroundscroll 5s linear infinite;*/
}