body {
    margin: 0;
    padding: 0;
    font-family: 'Garamond', serif;
    background-color: #000;
    overflow: auto;
}

#presentation {
    position: relative;
    height: 100vh;
    background: url('background1.jpg') no-repeat center center;
    background-size: cover; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#presentation img {
    height: 256px;
    width: 256px;
}

#title h1 {
    position: absolute;
    top: -18px;
    left: 4%;
    color: #F82;
    font-size: 4rem;
    font-family: "Script MT Bold", fantasy;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    padding: 6px;
    background-color: black;
    opacity: 0.6;
}

.button-container {    
    position: absolute;
    bottom: 15px;
    text-align: center;
}

#start-button img {
    width: 150px; /* Adjust as needed */
    height: auto;
    cursor: pointer;
    transition: transform 0.6s;
    border-radius: 70px;
}

#start-button img:hover {
    transform: scale(1.3);
}

midi-player {
    position: absolute;
    top: 0px;
    right: 0px;
}

