* {
    box-sizing: border-box;
    
}

h1 {
    color: white;
    text-shadow: 1px 1px 2px black;
    transition: .5s;
}
h1:hover {
    color: white;
    text-shadow: 0.5rem 0.5rem rgb(0, 0, 0, .25);
    transition: .5s;
}

h2 {
    color: white;
    text-shadow: 0.5rem 0.5rem rgb(0, 0, 0, .25);
    font-size: 3rem;
}

body {
    background: url(../images/galaxyMotion.gif) no-repeat center fixed; 
    background-size: cover;
    text-align: center;
}

main {
    width: 30%;
    height: 250px;
    margin: 350px 35%;
    border: 2px solid white;
    transition: .5s;
}

main:hover {
    width: 30%;
    height: 250px;
    margin: 350px 35%;
    box-shadow: 1em 1em rgb(146, 161, 170, .5);
    border: 2px solid white;
    transition: .5s;
}

select {
    height: 25px;
    border-radius: 5px;;
}

button {
    border-radius: 5px;
    height: 25px;
}