*{
    box-sizing: border-box;
}

html, body{
    background-color: rgb(175, 130, 255);
    margin: 0;
}

.all{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: clamp(1.5rem, 5vw, 4rem) 1rem;
}

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    text-align: center;
    color: black;
    width: 100%;
    max-width: 1100px;
    min-height: 140px;
    padding: 1.5rem;
    border-radius: 30px;
    border: medium solid rgb(39, 1, 39);
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 10px 10px 5px 0px rgb(36, 29, 35);
}

.main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    gap: 1.5rem;
    margin-top: 2vh;
}

.title{
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation{
    background-color: white;
    color: black;
    flex: 1 1 220px;
    max-width: 260px;
    min-height: 515px;
    padding: 1rem;
    border-radius: 30px;
    border: medium solid rgb(39, 1, 39);
    font-family: 'Caveat', cursive;
    box-shadow: 10px 10px 5px 0px rgb(36, 29, 35);
}

.button{
    background-color: white;
    color: black;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
}

.list{
    margin-left: 1vh;
}

.content{
    box-shadow: 10px 10px 5px 0px rgb(36, 29, 35);
    background-color: white;
    color: black;
    flex: 3 1 480px;
    max-height: 515px;
    padding: 1.5rem;
    border-radius: 30px;
    border: medium solid rgb(39, 1, 39);
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
}

ul {
  list-style-image: url('images/undefined - Imgur.gif');
  list-style-type: square;
}

.content-section{
    display: none;
}

#about{
    display: block;
}

.character{
    width: 250px;
    max-width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    margin-right: 1rem;
}

.character img{
    max-width: 100%;
    height: auto;
}

#about-content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
}

.about-text{
    flex: 1 1 250px;
    text-align: left;
    font-size: 1.5rem;
}

.content-title{
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contacts-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    height: 380px;
    overflow-y: auto;
}

#email{
    margin-top: 100px;
}

a {
  color: rgb(21, 10, 41);
}

.video-scroll{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-anchor: none;
    max-height: 380px;
    width: 100%;
}

.video{
    margin: 1vh;
    width: 100%;
    max-width: 560px;
}

.video iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.channel{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 1vh;
    text-align: center;
}

.projects-scroll{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-anchor: none;
    max-height: 380px;
    width: 100%;
}

.project{
    margin: 1vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 560px;
}

.project img{
    max-width: 100%;
    height: auto;
}
