
body{
    background-color: #1D2E6F;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    color: white;
    height: calc(100vh - 5vh);
    display: grid;
    grid-template-rows: auto 5vh;
}

.logo-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1D2E6F;
    padding: 0 50px;
}

footer a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
}

footer a, footer p{
    margin: 0;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    body{
        height: calc(100vh - 10vh);
        grid-template-rows: auto 10vh;
    }
    footer{
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }
    footer a{
        font-size: 16px;
    }
    
}