@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

body {
    background-color: #1b1b1b;
    font-family: 'Open Sans', sans-serif;
    user-select: none;
    /* border: none; */
    /* margin: 0;
    padding: 0; */
    /* width: 100%;
    height: 100%; */
    /* box-sizing: border-box; */
    text-align: center;
}

.box {
    width: 300px;
    height: 300px;
    background: #2b2b2b;
    display: inline-block;
    margin: 20px 1%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 5px #101010;
}

.box:hover {
    background: #1b1b1b;
    transition: background-color 0.5s ease;
}

header a {
    font-size: 100px;
    display: flex;
    justify-content: center;
    color: #efefef;
    text-decoration: none;
}

h1 {
    display: block;
    font-size: 50px;
    text-decoration: none;
    color: #efefef;
    text-align: center;
    padding-bottom: 20px;
}