@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: black;
  font-family: sans-serif;
  font-family: 'Playfair Display', serif;
}

.confirm {
  height: 100vh; 
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirm-content {
  position: relative;
  height: 100%;
  width: 100%;
  background: url("assets/Cattle\ Photo\ Cropped.png") center center no-repeat;
  background-size: cover;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: #a98b65;
  text-align: center;
  padding: 2rem;
}

.confirm-inner {
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50rem;
  max-width: 1000px;
  padding: 2rem;
  border: 5px solid #a98b65;
}

.logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
}

.confirm-text {
  margin: 1rem 0rem 2rem 0rem;
}

.confirm-text h1 {
  font-weight: 400;
  font-size: 40px;
  margin: .05rem 0rem;
}

.confirm-text span {
  font-style: italic;
  font-size: 25px;
}

.social-bar {
  display: flex;
  flex-direction: row;
}

.social-bar h1 {
  padding-right: .5rem;
}


.linkedin-icon {
  height: 50px;
  width: 50px;
}

.brush-right, 
.brush-left {
  height: 10px;
  width: 125px;
  margin: 18px 5px;
}

@media (max-width: 768px) {
  .confirm-inner {
    width: 100%;
    padding: 1.5rem;
  }

  .confirm-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .confirm-inner {
    position: relative;
    z-index: 1;
  }

  .confirm-text h1 {
    font-size: 30px;
  }

  .confirm-text p {
    font-size: 15px;
  }

  .logo {
    width: 80%;  
  }

  .brush-right, 
  .brush-left {
    height: 5px;
    width: 60px;
  }

.linkedin-icon {
  height: 32px;
  width: 32px;
}

  .social-bar {
    flex-direction: row;
    align-items: center;
  }

  .social-bar h1 {
    display: none;
  }
}
