* {
    margin: 0;
}

.logo-container {
    display: flex;
    justify-content: center; 
    margin: 75px 0 150px 0;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.container img {
    width: 50%;
    height: auto;
}

.button-container {
    display: flex;
    justify-content: center; 
    margin: 75px 0 75px 0;
}

.btn a {
    background-color: #ef9700;
    border: 1px solid #ef9700;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

.btn a:hover {
    color:#ef9700;
    background-color: #fff;
}


@media (max-width: 1025px) { 
    .container {
        justify-content: center;
    }

    .container img {
        width: 50%;
        height: auto;
    }
}

@media (max-width: 600px) { 
    .container {
        justify-content: center;
        align-content: center;
    }
    .container img {
        width: 100%;
        height: auto;
    }

    .logo-container {
        margin: 0 0 50px 0;
    }

}
