* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}
body
{
  background-color:rgba(5, 179, 179, 0.116);
}
/* Name style*/
.name {
    font-family: 'Satisfy', cursive;
    font-size: 27px;
    padding-bottom: 5px;
}

/* Projects*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 50%;
  margin-bottom: 16px;
  padding: 0 8px;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 0 16px;
}

.container::after,
.row::after {
  content: "";
  clear: both;
  display: table;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
}

.button:hover {
  background-color: rgb(143, 142, 142);
}

.project_heading {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin-top: 6.5px;
  margin-bottom: 3px;
}

p {
  text-align: left;
  font-size: 17px;
}

.row {
  margin-bottom: 6.5px;
}

.column:hover {
  box-shadow: cornsilk 8px 5px 5px 2px;
}
/*Styling for scroll Button*/
/* styles.css */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: rgba(9, 248, 188, 0.397);
  color: black;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  font-weight:1500 ; font-size: 25px;
  height: auto;
  width: 35px;padding-left: 5px;padding-right: 5px;
}
/*Main Content*/
.project{
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 10px;
  margin-right: 10px;
}
.description {
  font-size: 20px;
  text-align: center;
  font-weight: 450;
  }
.heading {
  font-size: 32px;
  font-weight: 450;
  
  margin-left: 120px;
  margin-right: 10px;

  margin-top: 15px;
  margin-bottom: 10px;
}
/* certificate Blocks*/
section {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.proj {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow: hidden;
}

.proj img {
  max-width: 100%;
  height: auto;
}
.project-info {
  margin-top: 0px;
  text-align: center;
}

.view-button {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  
}
.view-button:hover {
  
  background-color: black;
  color: #fff;
  cursor: pointer;
}
/*Footer*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
}

.footer {
    background-color: whitesmoke;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 535;
    color: rgb(66, 65, 65);

    margin-top: 6.5px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer .content {
    display: flex;
    justify-content: space-evenly;
    margin: 1.5rem;
}

.footer .content p {
    margin-bottom: 1.3rem;
}

.footer .content a {
    text-decoration: none;
    color: black;
}

.footer .content a:hover {
    color: rgb(0, 0, 0);
    padding-left: 8px;
    transition: all 0.3s ease;
}

footer {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 18px;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .footer .content {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .footer {
        position: unset;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .footer .content,
    .footer {
        font-size: 14px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        position: unset;
    }
}