* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
}

section {
    flex: 1;
    height: 350px;
    max-width: 195px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    border-radius: 5px;
}

.btn-container {
    display: flex;
    flex-direction: column;
    border-top: 2px solid white;
    padding-top: 1rem;
}

button {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

button {
    width: 60px;
    height: 30px;
    border-radius: 3px;
    margin: .4rem;
    font-size: 1rem;
    color: rgb(46, 46, 46);
    font-weight: bold;
    background-image: radial-gradient( circle 867px at -5.8% 1.8%,  rgba(255,255,255,1) 0%, rgba(7,0,216,1) 100.3% );
}

button:focus {
    background: rgb(31, 31, 31);
    color: #fafafa;
    border: none;
    outline: none;
    border: 1px solid rgb(144, 144, 144);
}

h1, h2 {
    text-align: center;
    margin: 1rem;
}

h1 {
    padding: .35rem 0;
    font-size: 1.6rem;
    color: #fafafa;
}

h2 {
    color: #fafafa;
    font-size: 1.3rem;
    height: 50px;
    display: flex;
    align-items: center;
    font-style: italic;
    text-shadow:    0px 4px 3px rgba(0,0,0,0.4),
                    0px 8px 13px rgba(0,0,0,0.1),
                    0px 18px 23px rgba(0,0,0,0.1);
}

section:nth-child(1) {
    background-color: #a4508b;
    background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
    
}

section:nth-child(2) {
    background-image: linear-gradient(-20deg, #fc6076 0%, #c76a18 100%);
}

section:nth-child(3) {
    background-image: linear-gradient(to top, #4481eb 0%, #0e8eb9 100%);
}

section:nth-child(4) {
    background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, rgb(206, 52, 114) 100%);
}

section:nth-child(5) {
    background-color: #90d5ec;
background-image: linear-gradient(315deg, #2899be 0%, #39bb7e 74%);


    
}