footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 100px;
    height: fit-content;
    width: 100%;
    background-color: rgb(20, 20, 20);
    color: white;
}

.footer-head {
    display: flex;
    gap: 250px;
    margin: 50px;
}

.footer-body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    margin: 30px 30px 50px 80px;
}

.lets-talk-container {
    margin-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-links-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.lets-talk-title, .quick-links-title {
    font-size: 40px;
    font-weight: 600;
}

.lets-talk-sub-title {
    font-size: 20px;
    color: rgb(170, 170, 170);
}

.lets-talk-contact-btn {
    background-color: white;
    border: 1px solid white;
    color: black;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px 30px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    transition: background var(--primary-transition), color var(--primary-transition);
}

.lets-talk-contact-btn:hover {
    background: none;
    color: white;
}

.quick-links-sub-container {
    display: flex;
    flex-direction: column;
}

.quick-link {
    color: rgb(170, 170, 170);
    text-decoration: underline;
    cursor: pointer;
}

.quick-link:hover {
    color: white;
}

.future-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.future-info-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-body-info {
    font-size: 15px;
    color: rgb(170, 170, 170);
    cursor: pointer;
}

.footer-body-info:hover {
    color: white;
}

.footer-body-support-btn {
    margin-top: 10px;
    background-color: white;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    padding: 10px 30px;
    border: 1px solid white;
    cursor: pointer;
    transition: background var(--primary-transition), color var(--primary-transition);
}

.footer-body-support-btn:hover {
    background: none;
    color: white;
}

.info-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fssm-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.professor {
    color: rgb(58, 130, 203);
    font-weight: 900;
    cursor: pointer;
    text-decoration: underline;
}

.professor:hover {
    color: rgb(139, 188, 237);
}

.fssm-container {
    gap: 20px;
}

.fssm-text {
    font-family: 'Times New Roman', Times, serif;
}

.fssm-logo {
    width: 300px;
}

.footer-icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-icon {
    cursor: pointer;
    font-size: 35px;
}

.story-set {
    color: white;
    font-size: 15px;
    cursor: pointer;
}

@media only screen and (max-width: 1300px) {
    .footer-head {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .lets-talk-container {
        margin: 0;
    }

    .footer-body {
        display: flex;
        flex-direction: column;
        margin: 30px 30px 50px 30px;
        gap: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .lets-talk-title, .quick-links-title {
        font-size: 25px;
    }

    .future-info-title {
        font-size: 22px;
    }

    .footer-head-text {
        font-size: 15px;
        width: 80%;
    }
    
    .footer-head-submit {
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .footer-head-input {
        width: 100%;
        font-size: 15px;
    }
}