:root {
  --dark-blue: #2f3699;
  --white: #ffffff;
}

span {
   cursor: url(/cursor.png), auto;
}

.header {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  text-align: center;
  padding: 5px;
  width: 100%;
  height: 250px;
}

.welcome {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  text-align: center;
  padding: 0px;
  width: 100%;
  height: 100%;
}

.gradient-surf-w-surfer {
  float: center;
  width: 60%;
  height: auto;
}

.nav-bar {
  font-family: sans-serif;
  font-size: 70px;
  text-align: center;  
}

.container {
  position: relative;
}

body { background-color: var(--white);
  color: black;
  font-family: Verdana;
}

h2 {
  color: black;
  font-family: serif;
  font-weight: bold;
  font-size: 35px;
  float: center;
}

p {
  color: black;
  font-family: serif;
  font-size: 30px;
  float: left;
  padding: 20px;
}


.surfer {
    position: relative;
    width: auto;
    height: 100%;
    float: left;
}

.gradient-surf {
    width: auto;
    height: 100%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
 display: inline;
}  

.column {
  float: left;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

