body{
    font-family: 'Roboto slab', sans-serif;
    font-weight: bold;
}
.bodys{
    border-radius: 50px;
}
.header{
    background-color: #272626;
    display: flex;
    flex-direction: row;
    border-radius: 15px;
}
.logo{
    margin-left: 2%;
    padding-bottom: 1%;
    padding-top: 1%;
    transition: 750ms;
}
.logo:hover{
    rotate: 180deg;
    transform: scale(1.25);
}
@keyframes rotate {
    from {
       rotate: 0deg;
    }
   
    to {
       rotate:180deg;
    }
   }
   
   .logo img {
        animation: rotate 750ms ease;
   }
.nav{
    margin-left: 20%;
    padding-bottom: 1%;
    padding-top: 1%;
    align-self: center;
}

.nav a{
    color: white;
    font-size: 30px;
    margin-right: 30px;
}
.nav a:hover{
    color: #61DAFB;
}
.bannerarea{
    margin-top: 5px;
    transition: transform .2s;
}
.bannerarea:hover{
    transform: scale(1.1);
}
.bannercontent{
    border-radius: 15px;
    padding-top: 4%;
    padding-bottom: 4%;
    color: white;
    text-align: center;
    background-color: #20232A;
}
h1{
    background-color: #20232A;
    padding-left: 25px;
    color: #61DAFB;
    font-size: 45px;
    border-radius: 5px;
}
p{
    font-size: 30px; 
    font-style: italic;   
}
h3{
    font-size: 35px; 
    font-style: italic;
}
a{
    text-decoration: none;
    transition: transform .2s;
}
a:hover{
color: #61DAFB;
}
.block{
    display: flex;
    background-color: #272626;
    border-radius: 25px;
    margin-top: 25px;
}
.left_block1{
    margin: 25px;
    align-self: center ;
}
.right_block1{
    margin: 25px;
    align-self: center;
}
.video{
    display: grid;
    justify-items: center;
}
.card h2{
    color: #61DAFB;
    text-align: center;
}
.card{
    background-color: #272626;
    position: relative;
    margin: .60%;
    justify-content: center;
    padding-left: .6%;
    padding-right: .6%;
    padding-top: .6%;
    border-radius: 25px;
}
.Cblock{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
}
.item{
    position: relative;
    
}
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.card p{
    color: white;
    text-align: center;
    font-style: normal;
    font-size: 17px;
}
.mySlides {
    display: none;
    align-items: center;
    margin-left: 20%;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    display: block;
    justify-content: space-between;
    background-color: #272626;
    border-radius: 25px;
    margin-top: 5%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -35px;
    color: white;
    font-weight: bold;
    font-size: 5vw;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
