@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    color: #000;
}

header {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100px;
    background: #fff;
    color: #484848;
}

nav,
section,
.copyright {
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 200px;
    padding: 10px;
}

li, p, h1, h2 {
    padding: 10px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

a:hover {
    color: #FE0073;
}

main {
    margin-top: 100px;
}

.background-magenta {
    background-color: #FE0073;
}

.background-grey {
    background-color: #E6E6E6;
}

.background-mint {
    background-color: #00FFD5;
}

.background-white {
    background-color: #fff;
}

section {
    padding: 100px 0px;
}

section#contact-us {
    padding: 0px;
}

h1 {
    font-size: 90px;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    width: 80%;
}

#emoji:hover {
    background-color: #fff;
}

#start p {
    font-size: 20px;
    color: #fff;
}

p,
.play-piano {
    font-size: 20px;
    font-style: normal;
    padding: 100px 0px;
}

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

.piano {
    display: flex;
}

.key {
    height: calc(var(--width)*4);
    width: var(--width);
    border-end-end-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid #484848;
}

.white {
    width: 50px;
    height: 200px;
    background-color: #fff;
    box-shadow: 5px 5px #484848;
}

.white.active {
    background-color: #FFFF02;
    box-shadow: none;
}

.black {
    --width: 30px;
    background-color: #000;
    margin-left: calc(var(--width) / -2);
    margin-right: calc(var(--width) / -2);
    z-index: 2;
}

.black.active {
    background-color: #83E6FB;
}
h3 {
    color: #484848;
    padding-top: 10px;
    font-weight: 600;
}
#play p {
    color: #484848;
    padding: 10px 0px;
}

#tutorials {
    text-align: center;
    background-color: #00ffd5;
}

h2 {
    text-align: center;
    font-weight: 800;
    font-style: italic;
    font-size: 76px;
    padding-bottom: 90px;
    color: #484848;
}

.tutorial-item {
    display: inline-block;
    margin: 20px;
    overflow: hidden;
    background-color: #00ffd5;
    width: 500px;
}

.tutorial-item p {
    text-align: center;
    padding: 30px;
    color: #484848;
    font-weight: 600;
}

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

#about-us h2 {
    text-align: left;
    padding-bottom: 0px;
}

#contact-us {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    max-height: max-content;
}

.footer-left,
.footer-right {
    width: 50%; 
    height: 335px;
}

.footer-left ul li {
    display: flex;
    padding: 5px;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    font-style: italic;
    font-weight: 600;
}

.resource  li a {
    font-style: normal;
    font-weight: 400;
} 

.resource {
    margin-top: 20px;
}
.outer-list {
    display: flex;
    gap: 60px;
}
.social-icons {
    display: flex;
    justify-content: space-between;
    max-width: 50%;
    padding: 20px 0px;
    margin-top: 110px;
}

.footer-left .social-icons img {
    width: 32px;   
}

.footer-right form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: inherit;
}

.footer-right input {
    margin-bottom: 15px;
    padding: 14px;
    font-size: 12px;
    background-color: white;
    border: none;
    outline: none;
}

.footer-right button {
    background-color: #ffff55;
    width: 200px;
    padding: 15px;
    border-radius: 30px;
    align-self: center;
    margin-bottom: 20px;
}

.footer-right button:hover {
    background-color: #f0f033;
}

footer .copyright {
    text-align: center;
    font-size: 12px;
    padding-bottom: 50px;
}
