*, *:before, *:after {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F0F0F0;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    text-shadow:0px 1px 1px rgba(0,0,0,0.4);

}

.main {
    background-color: #2edbc7;
    width: 500px;
    margin: 60px auto;
    padding: 50px 30px 60px 30px;
    box-shadow: 3px 3px 13px 2px #16B5A2;

}

.container {
    display: flex;
    justify-content: center;
}

.grid {
    width: 200px;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-top:	4px solid #D8D8D8;
    border-left: 4px solid #D8D8D8;
    border-bottom: 3px solid #F0F0F0;
    border-right: 3px solid #F0F0F0;
}

.grid div {
    height: 20px;
    width: 20px;
}

 .taken {
    border: hidden;
}

.tetromino {
    background-color: blue;
}

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.start-button {
    padding: 10px;
    cursor: pointer;
    background:linear-gradient(to bottom, #ffc477 5%, #fb9e25 100%);
    background-color: #ffc477;
    border: 1px solid #eeb44f;
    border-radius: 20px;
    box-shadow:inset 0px 1px 0px 0px #fce2c1;
    font-family: 'Play', sans-serif;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
	text-shadow:0px 1px 0px #cc9f52;
}

.score {
    margin: 30px;
    font-family: 'Play', sans-serif;
    text-shadow:0px 1px 1px rgba(0,0,0,0.4);

}

.mini-grid {
    width: 80px;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-top:	4px solid	#D8D8D8;
    border-left: 4px solid	#D8D8D8;
    border-bottom: 3px solid #F0F0F0;
    border-right: 3px solid #F0F0F0;
}

.mini-grid div {
    height: 20px;
    width: 20px;
}