html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  /* border: 1px solid red; */
}

.londrina-shadow-regular {
  font-family: "Londrina Shadow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: hsl(240, 92%, 5%);
  /* background-color: hsla(240, 78%, 9%, 0.463); */
  color: white;
  font-family: Quicksand, monospace;
  font-size: 15px;
  /* background-image: url(images/cloudy-sky.jpg); */
  /* determines which part of the image is centered  */
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
}

div {
  display: flex;
  align-items: center;
  justify-content: center;
}

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


header {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  min-height: 90vh;
  margin: 5px;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

nav li {
  display: inline-block;
  padding: 0 10px;
}

.bold-ul {
  font-weight: 500;
  margin: 10px auto;
}

h1 {
  font-family: 'Londrina Shadow';
  letter-spacing: 4px;
  line-height: 1;
  font-weight: 250;
  font-size: 64px;
}

.main-name {
  font-weight: 350;
  font-size: 120px;
  margin: auto;
  color: white;
}

#song-title {
  margin: 10px;
}


.ssa-block {
  border-radius: 8px;
  min-height: 90vh;
  padding: 30px;
  display: flex;
  gap: 30px;
}

.ssa-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 25vh;
}

.ssa-cover {
  height: clamp(320px, 60vh, 65vh);
  border-radius: 4px;
  border: .5px solid rgba(0, 0, 0, 0.926);
}

.music-link {
  margin: 8px auto;
  border: 1px solid white;
  border-radius: 22px;
  padding: 10px;
  min-width: 150px;
}

#spotify:hover {
  background-color: white;
  color: hsl(240, 92%, 5%);
  border: 2px solid #1ED760;
}

#apple:hover {
  background-color: white;
  color: hsl(240, 92%, 5%);
  border: 1px solid #FF0436;
}

/* start contact form styling */
.contact-block {
  min-height: 70vh;
}

form {
  width: 50%;
}

.form-group {
  flex-direction: column;
  align-items: flex-start;
}

/* start about.html styling */
.about-block {
  min-height: 90vh;
  gap: 30px;
}

.about-header {
  margin: 10px 10px 10px 0;
  text-align: left;
}

.about-text {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
}

.about-img1 {
  max-height: 60vh;
  max-width: 80vh;
  border-radius: 20px;
  padding: 0 10px;
}

.about-img {
  max-height: 80vh;
  max-width: 52vh;
  border-radius: 20px;
  padding: 0 10px;
}

/* End about.html stling*/

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
}

.icons {
  gap: 12px;
}

.icon-detail {
  display: block;
  z-index: 100;
  /* Keep width and height equal to preserve perfect 1:1 aspect ratio */
  height: clamp(24px, 3.5vh, 32px);
  width: clamp(24px, 3.5vh, 32px);
  object-fit: contain;
  /* Prevents image distortion */
  padding: 0;
}