@font-face {
    font-family: 'Abril Fatface';
    src: url('fonts/AbrilFatface-Regular.ttf');
}

html {
    background-image: url('images/Background.jpg');
    background-size: 100% 100%;
    background-attachment: fixed;
}

body {
    font-family: 'Abril Fatface';
    padding-left: 40px;
    padding-top: 70px;
    color: white;
}

.stretch-text {
    transform: scaleY(1.8);
    transform-origin: top;
}

header {
    font-size: 33px;
    margin-bottom: 22px;
    margin-top: 22px;
}

p {
    font-size: 22px;
    margin: 0;
    line-height: 1;
    max-width: 500px;
    text-align: center;
}

button {
    background-color: #44F11F;
    border: none;
    border-radius: 0;
    padding: 12px 22px;
    font-size: 22px;
    font-weight: 600;
    color: #8B211D;
    cursor: pointer;
    display: inline-flex;
    gap: 22px;
    text-decoration: none;
    margin-bottom: 16px;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  margin-right: 250px;
}

.music-img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.visual-img {
    width: 700px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight {
    background-color: #44F11F;
    color: #8B211D;
    padding: 2px 6px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url('images/Banner.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 32px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
}

.navbar a {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

.navbar a:hover {
    color: #44F11F;
}

.side-gif {
    position: fixed;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background-image: url('images/Super Music.gif');
    background-repeat: repeat-y;
    background-size: 100% auto;
    z-index: 1500;
}