/* Thomas McLean 2022 */

p {
  font-weight: bold;
  font-family: sans-serif;
}

a {
  color: white;
}

#gmail {
  padding: 5px;
  margin-bottom: 15px;
  text-transform: lowercase;
  background: rgba(126,126,126,0.7);
  border: 2px solid rgba(126,126,126,0.7);;
}

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

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.main {
  flex-grow: 1;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  height: 100vh;
  width: 100vw;
}

.header {
  min-height: 25%;
  width: auto;
  background-image: url(../img/header.jpg);
  background-position: center;
  background-repeat: no-repeat;

}

.info {
  color: white;
  font-size: 2em;
  background-color: rgba(20, 20, 20, 0.8);
  text-align: center;
  min-height: 10%;
  flex-shrink:0;
}

button {
    border-box: box-sizing;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    font-size: .8rem;
    padding: 15px 30px;
    margin-top: 15px;
    background: rgba(223,86,0,0.93);
    border: none;
    border: 2px solid rgba(223,86,0,0.93);;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 300ms ease-in-out;
}

button:hover {
  filter: brightness(125%);
  border-radius: 50px;
}

.footer {
  padding-top: 2em;
  background-color: black;
  margin-top: auto;
  flex-shrink:0;
}
