@charset "UTF-8";

@media screen and (max-width: 1350px) {
    main{
        width: 100%;
        height: 120px;
        display: block;
        flex-direction: column;
        text-align: center;
    }

    a{
    display: block;
    background-color: rgb(161, 161, 161);
    color: rgb(0, 0, 129);
    text-decoration: none;
    text-align: center;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 70%;
    height: 80px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 35px;
    border-radius: 20px;
    border-style: solid;
    box-shadow: 1px 1px 5px black;
    border-color: rgb(0, 0, 129);
    transition: transform 0.4s ease;
    }

    a:hover{
    display: block;
    background-color: rgb(192, 192, 192);
    color: rgb(0, 0, 129);
    text-decoration: none;
    text-align: center;
    align-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 70%;
    height: 80px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 35px;
    border-radius: 20px;
    border-style: solid;
    box-shadow: 1px 1px 5px black;
    border-color: rgb(0, 0, 129);
    transform: scale(1.1);
}

a#topright{
    margin-top: -22px;
}

header {
    width: 100%;
    height: 200px;
    text-align: center;
    align-content: center;
    margin: 0 auto;
    border-radius: 21px;
    background-color: rgb(0, 0, 129);
    box-shadow: 1px 1px 5px black;
}

};