body {
 background-color: #000000;
 font-size: 1.6w;
 scrollbar-face-color: black;
 scrollbar-arrow-color: black;
 scrollbar-highlight-color: white;
 scrollbar-base-color: white;
 scrollbar-track-color: white;
 scrollbar-shadow-color: #ffcc00;
 scrollbar-darkshadow-color: #ffcc00;
 scrollbar-3dlight-color: #ffcc00;
}

a {
  color: black;
  font-style: normal;
  font-weight: 900;
  padding: 2px;
  text-decoration: none;
}

/* If screen size is more than 786px wide, set the font-size */
@media screen and (min-width: 786px) {
    a {
      font-size: 2.6vw;
    }
}

/* If screen size is between two sizes, set the font-size */
@media (max-width:785px) and (min-width:451px) {
    a {
        font-size: 3.5vw;
    }
}

/* If screen size is 450px wide, or less, set the font-size */
@media screen and (max-width: 450px) {
    a {
       font-size: 4.5vw;
    }
}

a:hover {
  background-color: none;
}

a:active {
  background-color: none;
}

a:visited {
  background-color: none;
}

/* classes link style gold under embedded videos link */
a.gold {
  color: black;
  font-style: normal;
  font-family: Oswald;
  font-weight: 900;
  padding: 10px 10px;
  background-color: #ffcc00;
  text-decoration: none;
  cursor: pointer
}

/* If screen size is more than 786px wide, set the font-size */
@media screen and (min-width: 786px) {
    a.gold {
      font-size: 3.1vw;
    }
}

/* If screen size is between two sizes, set the font-size */
@media (max-width:785px) and (min-width:451px) {
    a.gold {
        font-size: 2.9vw;
    }
}

/* If screen size is 450px wide, or less, set the font-size */
@media screen and (max-width: 450px) {
    a.gold {
       font-size: 2.7vw;
    }
}


a.gold:hover {
  color: black;
  background-color: white;
}

a.gold:active {
  color: black;
  background-color: white;
}

a:visited {
  color: black;
  background-color: #ffcc00;
}

h1 {
  max-width: 96%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald"; 
  color: #ffcc00; 
  font-style: normal;
  font-weight: 900;
  margin: 0 0 0;
  padding: 10px 30px;
  border: 0px solid #FFA500;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #828282;
}

/* If screen size is more than 786px wide, set the font-size */
@media screen and (min-width: 786px) {
    h1 {
        font-size: 9.4vw;
    }
}

/* If screen size is between two sizes, set the font-size */
@media (max-width:785px) and (min-width:451px) {
    h1 {
        font-size: 9.5vw;
    }
}

/* If screen size is 450px wide, or less, set the font-size */
@media screen and (max-width: 450px) {
    h1 {
        font-size: 9.0vw;
    }
}

img {
  border: 0px solid #ddd;
  border-radius: 0px;
  padding: 2px;
}

.scrollable-element {
  scrollbar-color: black gold;
}

.white {
  max-width: 96%;
  font-family: "Arial"; 
  color: #ffffff; 
  font-style: italic;
  font-weight: 700;
}

/* If screen size is more than 786px wide, set the font-size */
@media screen and (min-width: 786px) {
  .white {
     font-size: 1.8vw;
  }
}

/* If screen size is between two sizes, set the font-size */
@media (max-width:785px) and (min-width:451px) {
    .white {
       font-size: 2.2vw;
    }
}

/* If screen size is 450px wide, or less, set the font-size */
@media screen and (max-width: 450px) {
    .white {
       font-size: 3.8vw;
    }
}


.responsive {
  width: 100%;
  max-width: 1000px;
  height: auto;
}


/* Four thumbs wide grid */
#rig {
    max-width: 86%;
    margin:0 auto; /*center aligned*/
    padding:0;
    font-size:0; /* Remember to change it back to normal font size if have captions */
    list-style:none;
    background-color:#000;
}
#rig li {
    display: inline-block;
    *display:inline;/*for IE6 - IE7*/
    width:25%;
    vertical-align:middle;
    box-sizing:border-box;
    margin:0;
    padding:0;
}
        
/* The wrapper for each item */
.rig-cell {
    /*margin:12px;
    box-shadow:0 0 2px rgba(0,0,0,0.3);*/
    display:block;
    position: relative;
    overflow:hidden;
    padding:5px;
}
        
/* If have the image layer */
.rig-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all 1s;
}

#rig li:hover .rig-img {
    transform:scale(1.01);
}
        
/* If have the overlay layer */
.rig-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #393939 url(https://www.nudecelebsworld.com/nudeceleb/link.png) no-repeat center 20%;
    background-size:50px 50px;
    opacity:0;
    filter:alpha(opacity=0);/*For IE6 - IE8*/
    transition:all 0.6s;
}
#rig li:hover .rig-overlay {
    opacity:0.8;
}

/* If have captions */
.rig-text {
    display:block;
    padding:0 30px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    text-transform:capitalize;
    font-size:22px;
    font-weight:bold;
    font-family: 'Oswald', sans-serif;
    font-weight:normal!important;
    top:40%;
    color:white;
    opacity:0;
    filter:alpha(opacity=0);/*For older IE*/
    transform:translateY(-20px);
    transition:all .3s;
}
#rig li:hover .rig-text {
    transform:translateY(0px);
    opacity:0.9;
}

@media (max-width: 900px) {
    #rig li {
        width:25%;
    }
}

@media (max-width: 700px) {
    #rig li {
        width:33.33%;
    }
}

@media (max-width: 550px) {
    #rig li {
        width:50%;
    }
}

/* The embed container */
.video-embed {
  position: relative;
  max-width: 88%;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9, calculated as 9÷16 */
}

/* The embedded iframe */
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


#country buttons
.button-one {
    background: #ffcc00; /* background color */
}
.button-two {
    background: #ffcc00;
}
.button-one,
.button-two {
    color: #000000; /* text color */
    display: inline-block;
    border-radius: 10px; /* rounded corners */
    padding: 10px 18px; /* space around text */
    text-transform: uppercase; /* all capital letters */
    text-decoration: none;
    margin: 14px; /* space between buttons */
    font-family: Oswald;
    font-weight: 900;
    letter-spacing: 1px;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/* If screen size is more than 786px wide, set the font-size */
@media screen and (min-width: 786px) {
  .button-two {
    font-size: 3.1vw;
    width: 36vw; /* Size of the buttons */
  }
}

/* If screen size is between two sizes, set the font-size */
@media (max-width:785px) and (min-width:451px) {
    .button-two {
    font-size: 3.1vw;
    width: 36vw; /* Size of the buttons */
    }
}

/* If screen size is 450px wide, or less, set the font-size */
@media screen and (max-width: 450px) {
  .button-two {
  font-size: 5.5vw;
  width: 65vw; /* Size of the buttons */
  }
}


.button-one:hover,
.button-two:hover {
    background: #fff;
}