@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  margin: 0;
  padding: 0;
  background-image: url(Josiah-6b.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.Container1{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.Container2{
  position: fixed;
  bottom: 0;
  right: 0;
}

.Container3{
  display: flex;
  justify-content: center;
  align-items: center;
}

.Column{
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 10px;
  text-align: center;
}

.logo, .AwardImg{
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.logo{
  width: 45%;
}

.BTN{
  display: block;
  padding: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5%;
  width: 25%;
  transition: border-width 0.3s, background-color 0.3s;
  background-color: #D7001D;
  border: 2px solid #D7001D;
  text-align: center;
  text-decoration: none;
}

.BTN:hover{
  background-color: #9C2D16;
  border-color: #9C2D16;
  text-decoration: underline;
  cursor: pointer;
}

a, .Notice, .Copyright, h2, .caption{
  color: white;
  font-family: 'Roboto', sans-serif;
}

a, .Notice{
  font-size: 25px;
}

.Copyright{
  font-size: 15px;
}

h2{
  text-align: center;
  font-size: 30px;
  text-decoration: underline;
}

/* Modal */
.ModalContainer {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
}

.ModalContainer2 {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
}

.ModalContainer3 {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
}

.close {
  cursor: pointer;
  font-size: 25px;
}

.modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-image {
  margin: 0 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#Img1, #Img2 {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

#Img3 {
  width: 65%;
  height: auto;
  display: block;
  margin: auto;
}

.caption{
  text-align: center;
  font-size: 25px;
  margin-top: 10px;
}

.ImgRow{
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.BtnModal{
  width: auto;
  height: 150px;
  padding: 10px;
}

.BtnModal:hover{
  cursor: pointer;
  opacity: 0.8;
}

video{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}