/* Basic CSS reset  */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}


/* Makes these elements more responsive and easier to work with  */
img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

/* Makes huge header tags wrap more uniformly  */
h1, h2, h3, h4, h5, h6{
    text-wrap: balance;
}


/* Helps make P content more tidy and easier to read  */
p{
    max-width: 75ch; /* This can be adjusted to fit your design preference*/
    text-wrap: pretty;
}

/* Removes default list-styles if your UL or OL has a role of 'list' */
ul[role='list'],
ol[role='list']{
    list-style: none;
}

/* Removes deafault font styles if you set your own  */
input,
button,
textarea,
select {
  font: inherit;
}

/* Removes default link styles from a tags  */
a{
    color: inherit;
    text-decoration: none;
}

/* Sets body height to take up the full height of the screen  */
body{
    min-height: 100vh;
    line-height: 1.5;
}


/* Makes scrolling when clicking an anchor element more fluid  */
@media (prefers-reduced-motion: no-preference){
    :has(:target){
        scroll-behavior: smooth;
        scroll-padding-top: 2rem;
    }
}
/*  End of CSS Reset  */


/* FONTS  */
html{
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color:#C5D1EC;
  background: linear-gradient(to bottom right, #111F44, #0c1633);
  text-align: center;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container{
    
    border:1px solid #c5d1ec38;
    padding: 2rem;
    border-radius: 20px;
}

p:hover{
    color: #54D3D4;
    transition: all 0.6s ease-in-out;
}

.uc{
    margin-top: 1rem;
    font-size: 12px;
    color: #c5d1ec38;
}

.music{
    margin: 1rem;
}

.ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border:1px solid #c5d1eca1;
    position: absolute;
}

.ball:nth-of-type(2){
    width: 40px;
    height: 40px;
}

.ball:nth-of-type(3){
    width: 30px;
    height: 30px;
}