@import url('https://fonts.cdnfonts.com/css/dedicool');

html,
body {
    background: grey;
    font-family: 'Dedicool', sans-serif;
    height: 98%;
}

main {
    margin-block: 25px;
    height: 95%;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    display: flex;
}

@media (max-width: 800px) {
    a {
        background: white;
        color: black;
        font-size: 40px;
        width: 50%;
        box-shadow: 10px 10px 1px 5px black;
        text-align: center;
        border: 4px solid black;
        padding: 25px;
        text-decoration: none;
    }
}


@media (min-width: 800px) {
    * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }

    html,
    body {
        font-family: 'Dedicool', sans-serif;
        height: 98%;
    }

    main {
        height: 95%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        display: flex;
    }


    a {
        background: white;
        color: black;
        font-size: 40px;
        width: 50%;
        text-align: center;
        border: 4px solid black;
        padding: 50px;
        margin: 50px;
        text-decoration: none;
    }

    a:hover {
        box-shadow: 10px 10px 1px 5px black;
    }
}