@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,900;1,900&family=Varela+Round&display=swap');

:root{
    --primary-color: rgb(250, 70, 5);

}
#footer {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 0 0;
    position: relative;
    overflow: hidden;

    *{
        z-index: 1;
    }

    .slant {
        z-index: 0;
        height: 200%;
        width: 0;
        background-color: var(--primary-color);
        /* transform: rotate(-45deg); */
        position: absolute;
        top: calc(-50px);
    }

    .links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 60%;

        a {
            text-decoration: none;
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 10px 0;
        }
    }

    .copyright {
        margin-top: 30px;
    }

    .myName {
        position: relative;
        font-size: 23vw;
        font-family: "Montserrat", serif;
        font-weight: 900;
        width: 100%;
        margin: -4% 0;
        text-align: center;
        transition: all 0.5s ease;
        /* transform: translateY(100px); */
    }
}

@media (max-width: 768px) {
    #footer{
        align-items:start;
        .links{
            display: flex;
            flex-direction: column;
            align-items: start;
            width: auto;
            gap: 10px;
            margin-left: 20px;
            
            a {
                font-size: 1.2rem;
                padding: 0;
            }
        }
        
        .copyright {
            margin-left: 20px;
        }
        
        .myName {
            /* margin: 0 0 0px 0; */
            font-weight: 700 !important;
        }
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    #footer{
        align-items:center;
    }
}