@font-face {
  font-family: "astloch-regular";
  src: url("fonts/astloch-regular-webfont.woff2") format("woff2"),
    url("fonts/astloch-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  width: 100%;
  background-attachment: fixed;
    position: relative; 
    background-color: black;
}

body::after{
  content: "";
   top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
 background-image: url(pics/catr.jpg);
   background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: left;
    background-size:30%;
}

p {
  color: white;
  line-height: 1.8;
  font-size: 15px;
  font-family: helvetica;
  text-align: left;
  white-space: wrap;
  padding-left: 10px;
  line-height: 22px;
}

h1 {
  font-size: 45px;
  font-family: "astloch-regular";
  text-decoration: none;
}

h1 a {
  color: white;
  text-decoration: none;
}

h1 a:hover {

}

main {
  text-align: center;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.dashboard {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.pics {
  grid-area: 1/1/1/1;
}

.button {
  width: 88px;
  font-size: 10px;
  background-color: white;
  color: black;
  height: 21px;
  margin-bottom: 10px;
}

.container {
  display: flex;
  margin-left: 10px;
}

#divider {
  display: flex;
  justify-content: space-evenly;
  gap: 0px;
  overflow: hidden;
    mix-blend-mode: luminosity;
}

.socials{
  display:flex;
  justify-content:space-evenly;
  font-family:helvetica;
}

footer{
  display:flex;
  justify-content:space-evenly;
    margin-top:200px;
}

.fa-brands {
  padding: 5px;
  font-size: 20px;
  width: 20px;
    color: #827f7d; 
  text-align: center;
  text-decoration: none;
}

.fa-brands:hover {
  opacity: 0.7;
 color:white;
}


@media only screen and (max-width: 1080px) {
  .dashboard {
    grid-template-columns: 1fr;
    height: 100vh;
    width: 100vw;
    grid-template-rows: 0.3fr 1fr;
  }

  .pics {
  }

  .text {
    grid-area: 2/1/2/1;
    width: inherit;
  }
}