@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    margin: 0;
    font-family: "Be Vietnam Pro", serif;
}

.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #36454f;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.footer-content{
    background-color: #36454f;
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 15px;
}



.links{
    background-color: #36454f;
    font-family: "Be Vietnam Pro", serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a{
    background-color: #36454f;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: "Be Vietnam Pro", serif;
    transition: color 0.3s;
}

.footer-bottom{
    background-color: #36454f;
    border-top: 1px solid #fff;
    margin-top: 10px;
    padding-top: 10px;
}

.footer-bottom p{
    background-color: #36454f;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}


@media (min-weight: 768px){
    .footer-content{
        flex-direction: row;
        justify-content: space-between;
        padding: 0 50px;
    }

    .links{
        flex-direction: row;
        gap: 20px;
    }
}