body{
    background: rgb(92, 205, 196);
    color: cornsilk;
    font-family: cursive;
}
header{
    background: rgb(128, 240, 135);
    padding: 2%;
}
.rotating{
    animation-name: rotate-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  @keyframes rotate-animation {
      0% {
          transform: rotateY(0deg);
        }
        100% {
          transform: rotateY(180deg);
        }
  }
.blog{
    border: 2px solid black;
    padding: 1%;
    margin: 1%;
    background: rgb(128, 240, 135);
}
footer{
    background-color: black;
    padding: 1%;
}
.form{background: lightcoral;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10%;}
h1{
    color: black;
}
h2{
    font-size: xx-large;
}
h3{
    font-size: x-large;
}
h2,h3{
    text-transform: uppercase;
    color: #c616a9;
}
.blog{
    border: 2px solid black;
    padding: 1%;
    margin: 1%;
}
.styling{
    margin-right: 40px;
}
.html-cert{
    width: -webkit-fill-available;
    height: auto;
}
legend{
    text-align: center;
    font-size: xx-large;
}
a{
    text-decoration: none;
}
.skills{
    color: blue;
}
.skills .dropdown{
    display: none;
    padding: 0;
}
.skills:hover .dropdown{
    display: block;
}


input[type="submit"] {
    background: rgb(128, 240, 135);
}
li{
    list-style: none;
}
.temp{
    display: block;
}
.contact-links{
    display: flex;
    justify-content: space-evenly;
    padding: 0;
}
.get-to-top{
    text-decoration: underline;
}
input, textarea{
    width: 100%;
    height: 50px;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.submit{
    width: auto;
    padding: 0 5%;
    background: black;
    color: white;
}
label{
    display: none;
}
.images{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}
.iframe-video{
    width: auto;
    height: auto;
}
iframe{
    width: 100%;
}
.submit{
    width: -webkit-fill-available;
}
@media (min-width:768px){
    nav{
        display: flex;
    }
    .github-cert, .html-cert, .js-cert, .github-cert-testdome {
        width: 35%;
        height: 35%;
    }
    .images{
        justify-content: flex-start;
    }
    .form{
        flex-direction: row;
    }
    .submit{
        width: 200px;
    }
}