html, body {
    margin: 0;
    padding: 0;
    font-family:Helvetica, Arial, sans-serif;
}

.galaxy {
    width: 100%;
    height: 100%;
    background-image: url(../images/main-image-galaxy.jpg);
    background-size:cover;
    background-position:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.main-button {
    /* margin: 30px; */ 
    background-color: #E0928B;
    color: #515342;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 5px 30px;
    text-decoration:none;
    /*
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    */
}

.main-button:hover {
    background-color: #515342;
    color: #E0928B;
    border-color: #E0928B;
}

h1 {
    color: teal;
    text-transform: uppercase;
}

h2 {
    color: lightcoral;
}

div {
    height: 200px;
}