@font-face {
    font-family: 'HelveticaNowText-Regular';
    src:url('./Assets/Fonts/HelveticaNowText-Regular.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100%;
    margin: 0;
    /* overflow: hidden; */
}


body {
    /* padding: 150px ; */
    margin: 0;
    height: 100%;
    width: 100%;
/* 
    background-image: url(./Assets/Headers/Black\ Coffee\ hero.jpg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;   */
    background-color: rgba(0, 0, 0, 0.95);

    /* overflow: hidden; */

    font-family: 'HelveticaNowText-Regular';
    font-weight: normal;    

    position: relative;
    /* display: flex;

    justify-content: center;
    align-items: center; */

}

h1 {
    font-weight: normal;
}

.page_title {
    font-size: 1.5rem;
    color: white;
    margin: 5%;
    position: relative;
    width: auto;
    white-space: nowrap;
}


.buttonbox {
    border-left: 3px solid white;
    border-radius: 0.125em;
    padding: 2rem;
    margin: 0;
}

.buttonbox:hover, .buttonbox:focus {
    cursor: pointer;
}


main {
    margin: 0%;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* padding: 0%; */
}

.contactflex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.box {
    width: 60%;
    max-width: 70ch;
    min-width: 40ch;
    height: 80%;
    /* margin: 150px 0% 50px; */
    /* margin: 15% auto; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    /* background-color: #fefefe; */
    margin: auto; /* 15% from the top and centered */
    padding-bottom: 25px;

    position: relative;
    z-index: 99;
    background-color: rgba(0, 0, 0, 1);
    
    overflow-y: hidden;
    border-radius: .25em;

    box-shadow: 0 0 0.25em white;


    /* box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2),0 6px 20px 0 rgba(255, 255, 255, 0.19); */
    animation-name: animatetop;
    animation-duration: 0.4s

    
/* 
    box-sizing: border-box; */

    /* padding-bottom: 250px; */
    /* margin: 0 10% 50px; */
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }

  
.container {
    width: 100%;

    height: auto;

    /* margin: 2rem 0 5rem; */
    padding: 0 0 5rem;

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    box-sizing: border-box;
    gap: 2rem;
    position: relative;

    /* font-family: Arial, Helvetica, sans-serif; */
    color: white;
    overflow-y: scroll;
}


.button {
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    /* margin: 0 10% 0 -10%; */
    width: 325px;
    height: 100px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-family: 'HelveticaNowText-Regular';
    font-size: 1rem;
    /* font-weight: 700; */
    
    padding: 10px 10px;
    margin: 20px;
    border: white 0.125em solid;
    border-radius: 0.5em;

    /* text-shadow: 0 0 0.15em white; */
    box-shadow: 0 0 0.25em white;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.button:hover, .button:focus {
    /* color: black; */
    /* background-color: white; */

    border: whitesmoke 0.125em solid;

    /* text-shadow: 0 0 0.75em black; */
    box-shadow: 0 0 0.5em white;

    transform: scale(1.05);
    transition: 100ms ease;

}



.page-title {
    margin: 2rem;
    color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* text-shadow: 0 0 0.115em white; */
    height: auto;
}

.Slide-title::after {
  content: "";
  position: absolute;
  z-index: 99;
  left: 0;
  bottom: 0;
  height: 2.5px;
  width: 100%;
  background: rgba(256, 256, 256, 0.8)
}

/* .page_title::after {
    content: "";
    position: absolute;
    z-index: 99;
    height: 2.5px;
    width: 100%;
    background: rgb(256, 256, 256);
    transform: rotate(90deg);
  } */

::-webkit-scrollbar {
    width: 5px;
  
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(60, 60, 60, .7);
   
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(256, 256, 256, 0.2);
    
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(256, 256, 256, 0.6);
  }

input {
    width: 75ch;
    height: 20px;
    /* font-family: Arial, Helvetica, sans-serif; */
}

@media (max-width: 1200px) {
    input {
        width: 50ch;
    }

    .contactflex {
        flex-direction: column;
    }

    .page_title {
        font-size: 1rem;
    }

    .buttonbox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-left: 0px solid white;
        border-top: 3px solid white;
    }

/*    .button {
        width: 250px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    } */
}

@media (max-width: 720px) {
    input {
        width: 35ch;
    }

    .contactflex {
        flex-direction: column;
    }

    .button {
        width: 250px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#email {
    width: 50ch;
    height: 2rem;
    /* font-family: Arial, Helvetica, sans-serif; */
}

#subject {
    min-width: 100ch;
    height: 150px;
    /* font-family: Arial, Helvetica, sans-serif; */
}

input, textarea {
    border-radius: 10px;
    background: none;
    border: 1px solid white;

    color: white;
}

input {
    padding: 1rem 1rem;
}

textarea {
    box-sizing: border-box;
    padding: .5rem 1rem;
    min-height: 200px;
}

.submit {
    position: relative;
    z-index: 1;
    /* box-sizing: border-box; */

    height: auto;
    width: auto;

    text-decoration: none;
    color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 1.25rem;
    font-weight: 700;
    
    padding: .5em;
    margin: 0 0 ;
    border: white 0.125em solid;
    border-radius: 0.5em;

    text-shadow: 0 0 0.1em white;
    box-shadow: 0 0 0.1em white;

    cursor: pointer;
}

.submit:hover {
    color: black;
    background-color: white;

    border: whitesmoke 0.125em solid;

    text-shadow: 0 0 0.1em black;
    box-shadow: 0 0 0.1em black;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    /* overflow: auto; Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/ opacity */
  }

  
  /* The Close Button */
  .close {
    color: #aaa;
    position: absolute;
    right: 5px;
    top: 0;
    margin: 3px 5px;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    opacity: 0.7;
    text-decoration: none;
    cursor: pointer;
  }

  @media (max-width: 800px) {
   
    .button{
        font-size: 0.65rem;    
        padding: 8px 8px;
        margin: 10px;
    }

}