

* {
  margin: 0;
  padding: 0;
  cursor: none;
  
}
.cursor {
  position: fixed;
  pointer-events: none;
  width: 32px;
  height: 32px;
  background-image: url('/img/cursors/cursor.gif');
  background-size: cover;
  z-index: 9999;
}


body {
    background-color: rgb(29, 44, 75);
    color: aliceblue;
    display: grid;
}

header {
    
    background-color: rgb(71, 109, 145);
    margin-bottom: 10px;
    text-align: center;
    justify-content: center;
    
    padding: 25px;
}

h1 {
    padding: 0px;
    font-size: 3em;

}
main {
    margin: 0px 25px;
}

button {
    background-color: rgb(240, 214, 175);
    width: 120px;
    height: 30px;
    border-radius: 20px;
}

footer {
  display: grid;
    
  justify-content: center;
  text-align: center;
  background-color: #3d667e;
    margin-top: 600px;
  padding: 25px;
  
}

a {
    color: rgb(217, 228, 190);
    text-decoration: none;
    font-weight: bolder;
}