* {
    /* background-color: rgb(103, 234, 148); */
    /*background-color: rgb(44, 45, 60);*/
    
    color: white;
    font-family: sans-serif;
}

h1, h2 {
    text-align: center;
}

button {
    background-color: rgb(103, 234, 148); /* Green */
    border: none;
    color: rgb(44, 45, 60);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0px 0px 10px 5px rgba(246, 244, 244, 0.5);
    
  }

button:hover {
    box-shadow: 0px 0px 20px 5px rgba(253, 253, 253, 0.766);
}

body {
    margin: 3vh; 
    background-image: url('./assets/starry-background.svg');
    background-size: cover;
    background-repeat: repeat-x;
    background-attachment: fixed;
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 600px) {
    body {
        max-width: 90vw;
    }
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background-color: black;
    padding: 3vh;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(246, 244, 244, 0.5);
  
}

#instructions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#installer {
    margin-bottom: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#logo {
    padding-top: 5vh;
    padding-bottom: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    
}

#readme {
    margin-top: 10vh;
}

