/* 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." */

header {
  width: 1000px;
  height: 53px;
  background-color: rgba(0, 0, 0, 0.2);
  
}

body {
  background-color: #163448;
  background-image: url('valorant/val-background.png');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  width: 1000px;
  margin: auto;
  color: white;
  font-family: Verdana;
  image-rendering: pixelated;
  
}

footer {
  text-align: center;
}

div {
  float: none;
}

img {
  float: inherit;
}

p {
  line-height: 1.2;
}

.section {
  padding: 20px;
  background-color: #00a6ff;
  width: 1000px;
  float: left;
}

.box-holder {
    float: left;
    width: 867px;
    height: auto;
}

.text-box {
  width: 830px; /*this may need to change if other paddings/borders are changed*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border: 4px solid #FFFFFF;
  border-radius: 15px;
  background-color: rgb(57, 56, 222);
  background-image: linear-gradient(rgb(57, 56, 222), rgb(0, 0, 99));
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  float: none;
}
.text-box-frog {
  width: 830px; /*this may need to change if other paddings/borders are changed*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border: 4px solid #FFFFFF;
  border-radius: 15px;
  background-color: rgb(57, 222, 56);
  background-image: linear-gradient(rgb(57, 222, 56), rgb(0, 99, 00));
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  float: none;
}

/*these are meant to let images float at certain parts of a textbox*/
.imgfloatleft {
  float: left;
}

.imgfloatright {
  float: right;
}

.imgabsoluteleft {
  float: left;
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 18px;
}

.redacted span{
    color: black;
    background-color: black;
}
.game-holder {
  width: auto;
  height: 504px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  padding-top: 20px;
  box-shadow: 0px 5px 5px black;
  background-color: rgba(244, 244, 244, 0.1);
}
.agentholder {
  display: block;
  margin: auto;
  position: relative;
  width: 1000px; 
  height: 900px;
  text-align: center;
}
.agentholdernav{
  display: block;
  margin: auto;
  width: 1000px; 
  position: absolute;
  bottom: 150px;
}
#parent {
  position: relative;
  
  width: 1000px; 
  height: 900px;
  text-align: center;
}

#child {
  position: absolute;
  top: 100px;

  width: 200px;
  height: 200px;
  background-color: #fafafa;
  border: solid 3px #78e382;
  font-size: 24px;
  text-align: center;
}
.dropdown {
  position: absolute;
  display: inline-block;
  text-align: center;
  background-color: rgba(244, 244, 244, 0.5);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f4f4f4;
  min-width: 160px;
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*navigation things*/
#nav-tabs {
  float: left;
  width: 100px;
  height: 1000;
  /*border-radius: 25px;
  border: 4px solid #FFFFFF;
  background-image: linear-gradient(rgb(57, 56, 222), rgb(0, 0, 99));*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 0px;
  

  
}
nav {
  display: block;
}

/*links*/
a:link {
  color: cyan;
}
a:visited {
  color: white;
}
a:hover {
  color: skyblue;
}

  @font-face { 
    font-family: Tungsten; 
    src: url('/fonts/Tungsten-Bold.ttf'); 
  }
  @font-face { font-family: Tungsten-light; src: url('/fonts/tungsten-light.ttf'); }