html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
}

name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 200%;
    color: white;
}

subname {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 75%;
    color: white;
}

p {
    
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

img:hover {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.container{
    padding: 25% 0;
    text-align:center;
}

.container img{
  display:inline-block;
  width:30%;
  margin:0% 3% 0 3%;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;
}
