html,
body,
main {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("https://i.redd.it/xob7iy25rez01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: brightness(25%);
    color: #DEDEDE;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

ul {
    padding: 0;
    margin-top: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #DEDEDE;
}

input {
    width: 100%;
}

input::placeholder {
    color: #DEDEDE;
}

hr {
    margin-top: 0px;
    width: 100%;
    border: none;
    background-color: #ccc;
    color: #ccc;
    height: 1px;
}

textarea:focus,
input:focus {
    outline: none;
}


/* Phone */

@media screen and (max-width: 800px) {
    main {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }
}


/* Desktop */

@media screen and (min-width: 800px) {
    main {
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 50px;
        display: grid;
        grid-template: "links widget" "search search";
        grid-template-rows: 1.4fr 2fr;
        box-sizing: border-box;
    }
}