/* RMIT University Vietnam
Course: COSC2430 Web Programming
Semester: 2023A
Assessment: Assignment 1
Author: Nguyen Thach Khanh Dzi
ID: s3980883
Acknowledgement: Acknowledge the resources that you use here. */

footer {
    background-color: #4c9e9e;
    border-top: solid 4px darkcyan;
    font-family: 'century gothic';
 }
 .footer{
    font-weight: 100;
    font-size: 2rem;
    background:#4c9e9e;
}

    
.row{
    color:darkslategray;;
    font-size:0.8em;
}
.row ul{
    display: flex;
    justify-content: center;
    gap: 5%;
    padding: 2%;
}
    
.footer .row a{
    color:darkslategray;
    transition:0.5s ease all;

}
    
.footer .row a:hover{
    color:aquamarine;
}
    
@media (max-width:991px){
    .row ul{
        flex-direction: column;
        align-items: center;
    }
}

iframe {
    width: 40%;
    border: 2px solid black;
    border-radius: 10px;
    margin: 0 auto;
  }

  footer p{
color: darkslategray;
  }

  