* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.01em;
    color: white;
    background-color: black;
}

a:hover {
    background-color: rgb(94, 199, 232);
    color: darkcyan;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image {
    flex-basis: 40%;

}

.text {
    font-size: 20px;
    padding-left: 20px;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: darkcyan;
    border: 1px solid #00d7ef;
    font-family: cursive;
    font-size: 100%;
    position: sticky;
    
}

li {
    float: left;
    border: 1px solid #000000;
}

.active {
    background-color: rgb(1, 32, 98);
    color: rgb(94, 199, 232);
}

li a {
    display: block;
    color: aqua;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

h1{
    font-size: 200%;
    color: aqua;
    padding: 10px;
}

h2 {
    color: rgb(179, 107, 247);
}

h3 {
    color: red;
}

.BANE{
    color: blue;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    width: 25%;
    height: auto;
    max-width: 100%;
}

footer {
    text-align: center;
    color: chartreuse
    #23F;
}

.btn {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
  margin: 0 auto;
}
.btn:hover {
    background-color: red;
    color: black;
}

.link {
    color: yellow;
}
.link:hover {
    background-color: green;
    color: red;
}

p2 {
    display: inline-block;
    text-align: center;
    padding: 10px;
}

.imgCode {
width: 50%;
height: auto;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}



section{
    border: 7px solid green;
    border-radius: 13px;
    width: 80%;
    margin: 1rem auto 0 auto;
    height: 40rem;
    position: static; 
    /* this is a static element and will only do the default */
}

article{
    border: medium solid black;
    margin: 1rem;
}

#one{
    width: 20%;
    background-color: #4CAF50;
    position: relative;
}

#two{
    width: 50%;
    background-color: black;
    color: white;
    position: absolute;
    top: 4rem;
    right: 10rem;
}

#three{
    width: 50%;
    margin: 0;
    background-color: burlywood;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateX(50%); /* to position it centered X axis */

}

footer{
    width: 100%;
    height: 2rem;
    background-color: darkgreen;
    margin: 20rem 0;
    position: sticky; /* this will stay stuck to the position of the screen you want,*/
    bottom: 0;
}

.master{
    width: 300px;
    height: 200px;
    background-color: red;
    margin: 2rem auto;
    position: relative;
}

.overlay{
    width: 0;
    height: 100%;
    background-color: pink;
    position: absolute;
    overflow-x: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    transition: .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.master:hover .overlay{
    width: 100%;
    right: 0;
}