/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 7, 2014, 7:43:18 PM
    Author     : rkuhnjr
*/

body
{
    background-image:url('../img/Cristo-dungeon-web.jpg');
    background-size: cover;
    background-color: black;
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:top;
} 

p {
    color: white;
    font-size: 14pt;
}

.title {
    color: white;
    font-size: 32pt;
    font-weight: bolder;
}

.centerBlock {
    margin-right: 12px;
}

.contentBlock {
    width: 1024px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0,0,0,0.7);
    border-radius:25px;
    border:2px solid #ff0000;
    padding: 40px 15px 60px 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.contentBlock img {
    width: 100%;
}

.aboutContent {
    width: 95%;
}

.toright {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    margin-right: 32px;
}

.toleft {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
    margin-left: 32px;
}

.buttonrow {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.secondrow {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.logo { 
    width: 625px;
    align-self: flex-end;
}

.logo img {
    width: 100%;
}

#clock {
text-align: center;
text-wrap: nowrap;
color: white;
text-shadow: 2px 2px 4px #000000;
font-weight: bolder;
position: relative;
top: -28px;

}

.email { 
    height: 52px;
    left: 105px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 576px;
    top: 40px;
}

.footer {
    margin-top: 35px;
    width: 269px;
    height: 66px;
    margin-left: auto;
    margin-right: auto;
}

.logowrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 600px;
    margin-left: 25px;
    margin-right: auto;
    padding: 15px 15px 15px 15px;
}

a:link, a:visited {
  color: white;
  text-shadow: 2px 2px 4px #000000;
  border: 2px solid #ff0000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  border: 2px solid #cce0ff;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px red, 0 0 5px darkred;
}

button {
    color: white;
    background-color: transparent;
    background-repeat: no-repeat;
    text-shadow: 2px 2px 4px #000000;
    border: 2px solid #ff0000;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
  }

  button:hover, button:active {
    border: 2px solid #cce0ff;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 25px red, 0 0 5px darkred;
  }

  @media screen and (max-width: 1200px) {
    .contentBlock {
      width: 95%;
    }
  }

  @media screen and (max-width: 700px) {
    .logo { 
        width: 95%;
        align-self: center;
    }

    .centerBlock {
        width: 98%;
    }

    .title {
        font-size: 24pt;
    }
  }

  @media screen and (max-width: 500px) {
    #clock {
        top: -6px;
    }

    a:link, a:visited {
        padding: 5px 10px;
    }

    button {
        padding: 10px 20px;
    }

    .title {
        font-size: 14pt;
    }
  }
