#cadillacCar {
    width: 500px; 
    height: auto;
}

body {
    text-align: center;
    font-family: Doto, sans-serif;
    background-color: #F2F0EF;
    background-image: radial-gradient(black 1px, transparent 0);
    background-size: 100px 100px;
    background-position: -19px -19px;
    margin: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

p, li {
    font-family: 'Courier New', Courier, monospace;
}

#welcome, #spotify {
    border: dotted 3px black;
    border-radius: 20px;
    padding: 10px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2F0EF; /* Added so text underneath doesn't bleed through */
    z-index: 10;
}

#topBar {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.1);
    padding: 5px 10px;
    backdrop-filter: blur(2px);
    border-radius: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
}

a {
    color: black;
    text-decoration: none;
}

#bottomBar {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: rgba(0,0,0,0.1);
    padding: 5px 10px;
    backdrop-filter: blur(2px);
    border-radius: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10000;
}

.bottomImg {
    height: 30px;
    width: auto;
    cursor: pointer;
}   

#welcomeheader, #spotifyheader, #chromeheader {
    display: flex;
    justify-content: flex-end;
    background-color: rgba(0,0,0,0.1);
    padding: 5px 10px;
    backdrop-filter: blur(2px);
    border-radius: 15px;
    gap: 20px;
    cursor: move; /* Hints to the user that it's draggable */
}

.closeButton {
    cursor: pointer;
    color: red;
}

#welcomemax {
    color: green;
}