* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
    font-family: 'Ubuntu Regular', monospace;
}

body {
    background-color: #000000;
    color: #30ce00;
}

.navigation-sidebar {
    height: 90%;
    width: 22%;
    position: fixed;
    right: 1%;
    top: 1%;
    background-color: black;
    overflow-x: hidden;
    padding-top: 20px;
    z-index: 1;
}

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

.Navigation{
    height: 20%;
    margin-top: 5%;
    border: 2px solid #30ce00;
    border-radius: 15px;
    box-shadow: 0 0 10px #30ce00;
    text-align: left;
    padding-left: 6%;
}

.Music-container{
    height: 20%;
    margin-top: 5%;
    border: 2px solid #30ce00;
    border-radius: 15px;
    box-shadow: 0 0 10px #30ce00;
    text-align: left;
    padding: 2%;
}

.musicPlayer{
    width: 70%;
}


.self-portrait-sidebar {
    height: 100%;
    width: 23%;
    position: fixed;
    left: 1%;
    top: 0.5%;
    background-color: black;
    overflow-x: hidden;
    padding: 1%;
    z-index: 1;
}

.skills-container{
    height: 20%;
}

.skills-container p{
    text-align: left;
    margin-bottom: 1%;}

.out-of-100 {
    width: 90%;
    border: 2px solid #30ce00;
    box-shadow: 0 0 10px #30ce00;
    margin-bottom: 1%;
}

.self-portrait-container img {
    width: 70%;
    height: auto;
    margin-top: 85%;
    margin-left: 10%;
}

.self-portrait-container img:hover {
  animation: Shake 0.8s;
  animation-iteration-count: 3s;
}

@keyframes Shake {
    0% {
        transform: rotate(5deg);
    }
    25% {
        transform: rotate(-6deg);
    }
    50% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-6deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

.card {
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 20px;
    max-width: 50%;
    max-height: 90%;
    margin: 50px auto;
    background-color: #121212;
    box-shadow: 0 0 10px #30ce00;
    text-align: center;
}

a {
  color: #30ce00;
  font-weight: bold;
}

.card-header{
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 20px;
}

.card-body {
    border: 2px solid #30ce00;
    border-radius: 15px;
    margin: 5%;
    padding: 10px;
    text-align: center;
}

.card-body p {
    text-align: left;
}

.likes-dislikes-container{
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.likes-section{
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 10px;
    max-width: 45%;
    text-align: left;
}

.dislikes-section{
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 10px;
    max-width: 45%;
    text-align: left;
}

.Lore{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 10px;
    margin-top: 5%;
    text-align: left;
}
.questions-sidebar{
    height: 40%;
    width: 23%;
    position: fixed;
    right: 1%;
    top: 0.5%;
    background-color: black;
    overflow-x: hidden;
    padding: 1%;
    z-index: 1;
}

.art-gallery {
    border: 2px solid #30ce00;
    border-radius: 15px;
    padding: 20px;
    max-width: 80%;
    max-height: 90%;
    margin: 50px auto;
    background-color: black;
    box-shadow: 0 0 10px #30ce00;
    text-align: left;
}

.art-item {
    display: flex;
    justify-content: space-around;
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

