* {
    box-sizing: border-box
}

.primarybg {
    background: linear-gradient(to right, #1E387C, #2B92C1);
    color: white;

    transition: background 0.1s ease-in-out;
}

button.primarybg:hover {
    background: linear-gradient(to right, #25428b, #38a6da);
}


@media (max-width:1200px) {
    main {
        flex-direction: column-reverse
    }
}