/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'CustomFont'; /* Name your font family */
    src: url('/fonts/Sniglet Regular.ttf'); /* Locate the .ttf file within your directory*/
}

body {
    background-color: white;
    color: rgb(255, 255, 255);
    font-family: Verdana;
    background-image: url("photos/FreePalestine.png");
    background-repeat:repeat;
    background-size: 15%;
}

.container{
    background: black;
    max-width: 800px;

    margin: 0 auto;
    border-radius: 10px;
 
}

.topBar{
    background:green;
    text-align: center;
    border-radius: 10px;
    color: red;
    
}

h1, h2{
    font-family: 'CustomFont', sans-serif; /* Use the font family */
    font-size: 60px;
}

p{
    color: rgb(158, 5, 120);
}

.buttonsBar {
    margin: 0 auto;
    display: inline-block;
}

.custom-btn {
    width: 150px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    font-size: 15px;
}

.btn-2 {
    background: #004dff;
    background: linear-gradient(0deg, #ff0000 0%, #ff0000 100%);
    border: none;
}

.btn-2:before {
    height: 0%;
    width: 2px;
}

.btn-2:hover {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}
