header {
    background-color: #082029;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;

    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.header_container {
    max-width: 1920px;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_container a {
    display: flex;
    align-items: center;

    gap: 8px;
}

.header_container a img {
    height: 40px;
    width: auto;
}

main {
    flex-grow: 1;
    background-color: #05161D;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px;
    padding-bottom: 40px;
}

#main-content {
    max-width: 1920px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer {
    height: 120px;
    background-color: #082029;

    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.footer_container {
    max-width: 1920px;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_container a {
    display: flex;
    align-items: center;

    color: white;
    text-decoration: none;
}

.footer_container a:hover {
    color: #1f7594;
}

.footer_container a img {
    height: 40px;
    width: auto;
}

@media (max-width: 768px), (pointer: coarse) {
    main{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 520px) {

     .header_container {
        flex-direction: column;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

@media (max-width: 480px), (pointer: coarse) {
    main{
        padding-left: 16px;
        padding-right: 16px;
    }
}