

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif ;
}

body {
    transition: 3s ease;
    background-image: url(back.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-blend-mode: screen;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: none;
}

.Container{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: none;
}
.Container .Heading {
    padding-top:30px;
    width: 70%;
    padding-bottom: 20px;
}
.Container .Heading h1 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid gray;  
}
.Container .Heading h1:hover {
    color: blue;
}
.Container .Heading h1:hover span {
    color: red;
}

.Container .Heading h1 span {
    font-weight: 80;  
}
.Container .Box {
    margin: 40px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.Container .Box .Col1{
    display: flex;
    flex-direction: column;
    width: 32.5%;
    justify-content: space-between;   
}
.Container .Box .Col2{
    display: flex;
    flex-direction: column;
    width: 32.5%; 
    justify-content: space-between; 
}
.Container .Box .Col3{
    display: flex;
    flex-direction: column;
    width: 32.5%; 
    justify-content: space-between;  
}
.Container .Box .Col1 img{
    width: 100%; 
    transition: .7s ease;
    border: 3px solid black;
    border-radius: 10px;
    box-shadow: 5px 6px red;
    -webkit-filter: blur(1px);
}
.Container .Box .Col2 img{
    width: 100%; 
    transition: .7s ease;
    border: 3px solid black;
    border-radius: 10px; 
    box-shadow: 5px 6px yellow; 
    -webkit-filter: blur(1px);
}
.Container .Box .Col3 img{
    width: 100%;
    height: 40%;  
    transition: .7s ease;
    border: 3px solid black;
    border-radius: 10px;
    box-shadow: 5px 6px blue;
    -webkit-filter: blur(1px);
}
.Container .Box img :hover .Box {
    -webkit-filter: blur(5px);
}
.Container .Box .Col1 img:hover {
    scale: 1.25;
    box-shadow: none;
    border-radius: 5px;
    border: none;
    -webkit-filter: blur(0px);
}
.Container .Box .Col2 img:hover {
    scale: 1.25;
    box-shadow: none;
    border-radius: 5px;
    border: none;
    -webkit-filter: blur(0px);

}
.Container .Box .Col3 img:hover {
    scale: 1.25;
    box-shadow: none;
    border-radius: 5px;
    border: none;
    -webkit-filter: blur(0px);
}
  

.Container .btn  {
    margin: 40px 0 70px 0 ;
    background-color: #222;
    padding: 8px 8px 10px 8px;
    border-radius: 5px;
}

.Container .btn input
{
    background-color: transparent;
    color:white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 2px;
    font-weight: bolder;
    letter-spacing: 3px;
    border: none;


}

.Container .btn > div
{
    background-color: transparent;
    color:white;
    text-decoration: none;
    margin-top: 2%;
    padding-bottom: 0%;
    margin-bottom: 0%;
    font-size: 0.3em;
    font-weight: bolder;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-weight: 50;
    border: none;
}

.Container .btn :link {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bolder;
    letter-spacing: 3px;
}
.Container .btn a{
    color: #fff;
    font-size: 1.2em;
    font-weight: bolder;
    letter-spacing: 3px;
}
footer {
    position: relative;
    justify-self: center;
    width: 100%;
    background-color: yellowgreen;
    padding: 10px;
    background-color: #2c3e50;
    padding-bottom: 0px;
}
.footer .div {
    height: 50px;
    width: 100%;
   display: block;
    justify-content: space-evenly;
}
i {
    background-color: #ffffff;
}
.icons {
    transition: 1.5s ease ;
    background-color: #ffffff;
  }
.icons p {
    background-color: #2c3e50;
    display: flex;
    justify-content: CENTER;
    flex-direction: row;
}
.creds {
    font-size: small;
    margin: 6px;
    color:white;
}
.creds > a {
    color: greenyellow;
    text-decoration: dotted;
}

@media only screen and (max-width: 769px) {
    .Container .Box {
        flex-direction: column;
    }
    .Container .Box .Col1{
        width: 100%;
        justify-content: space-evenly;   
    }
    .Container .Box .Col2{
        width: 100%;
        justify-content: space-evenly;   
    }.Container .Box .Col3{
        width: 100%;
        justify-content: space-evenly;   
    }
}
@media (min-width:1200px)
{
    .Container {
        width: 95%;
        gap:30px
    }
}
@media only screen and (max-width: 668px) {
    .Container .Heading {
        width: 100%;
        padding-bottom: 50px;
    }
    .Container .Heading h1 {
        font-size: 1em;
    }
}
