body {
    background: linear-gradient(to right, #00183eff, #002da7ff);    
    color: white;
    display: grid;
    grid-template-columns: auto min-content;
    justify-content: space-between;
    gap: 1em;    
    font-size: larger;    
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;    
}

header {
    margin-bottom: 4em;
    display: grid;
    grid-template-columns: auto min-content;
}

footer {
    margin-top: 2em;
}

#note {
    display: grid;
    grid-template-columns: min-content min-content;
    gap: 1em;
    align-content: end;
    font-size: 16pt;
    font-weight: bold;        
}

#note, #mainCaption {
    text-transform: uppercase;
    font-family: "Sora", sans-serif;
}

#note img {
    width: 4rem;
}

#mainCaption h1 {    
    font-size: 3em;
    font-weight: bold;
}

.red, #mainCaption h2 {    
    color: #ee2831ff;
}

#mainCaption * {
    margin: 0;
}

#guitar {
    margin: 0 1em 0 0;
    max-height: 80%;
    float: right;
}

#container {
    padding: 2em 0 2em 2em;
}

#mainText {
    margin-top: 2em;
    line-height: 1.5;
}

/* Container that wraps slider */
.videoCarousel {    
  width: 100%;  
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.my-slider iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* Style prev/next buttons */
.tns-controls {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    /* clicks pass-through */
    pointer-events: none; 
}

.tns-controls button {          
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 1em;
  pointer-events: auto; 
}

.tns-controls [data-controls="prev"] {  
  left: 0;
  margin-right: 0.5em;
}
.tns-controls [data-controls="next"] {      
  right: 0;
}

.tns-controls button {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1em;
  justify-content: center;
}

.contacts li a {
  display: block;
  width: 4em;
  height: 4em;
  background-color: white;
  border-radius: 1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  transition: transform 0.2s ease;
}

.contacts li a:hover {
  transform: scale(1.05);
}

/* Custom icons — use your own paths or change URLs */
.contacts li:nth-of-type(1) a {
  background-image: url("youtube.svg");
}

.contacts li:nth-of-type(2) a {
  background-image: url("rutube.svg");
}

.contacts li:nth-of-type(3) a {
  background-image: url("telegram.svg");
}