@charset "UTF-8";

@font-face {
    font-family: 'Greybeard';
    src: url('fonts/Greybeard-17px-Bold.woff2');
}

body {
    background-color: rgba(0, 0, 0, 0.282);
    background-image: url(images/concrete_texture_01.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: darken;
    justify-content: center;
}

h1 {
    display: flex;
    color: white;
    justify-content: center;
    font-size: clamp(40px, 100%, 70px);
    padding: 0px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

p {
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: 'Greybeard', sans-serif;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 500px;
}

.footer {
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 500px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 6px;
}

.image_text {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 500px;
  margin-top: clamp(25px, 2%, 25px);
  margin-bottom: clamp(25px, 2%, 25px);
}

.button {
    display: flex;
    appearance: none;
    border: none;
    background: transparent;
    outline: none;
    align-items: center;
    
    font-family: 'Greybeard', sans-serif;
    font-size: 20px;
    color: rgb(0, 0, 0);
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 2px;
    
    width: 90%;
    max-width: 500px;
    height: 50px;
    
    border-radius: 6px;
    border-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}