*,
*::before,
*::after {
  box-sizing: border-box;
}


.button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 100px;
    min-height: 30px;
}

.button-link-border {
    display: inline-block;
    padding: 10px 50px 10px 50px;
    background-color: #4CAF50;
    color: white;
    border: 1px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    min-width: 100px;
    min-height: 30px;
    font-size: 0.75rem;
}


h2 {
    text-align: center;
    font-size: 1.2rem;
    color: #808080;
}

.h2-text {
    text-align: left;
    font-size: 1.2rem;
    color: #808080;
}


.block {
  width: 400px;
  max-width: 80%;
  padding: 15px 15px 15px 15px;
  margin: 0 auto;
  border: 3px solid #bdbdbd;
  border-radius: 10px;
}

.text-container {
	max-width: 768px;
	width: 90%;
	padding: 10px 10px 10px 10px;
	margin: 0 auto;
	text-align: left;
}

html {
	font-size: 18px;
	color: black;
}

@media screen and (max-width: 1080px) {
	html {
		font-size: 18px;
		/*color: green;*/
	}
}
@media screen and (max-width: 768px) {
	html {
		font-size: 16px;
		/*color: blue; */
	}
}
@media screen and (max-width: 480px) {
	html {
		font-size: 14px;
		/*color: red;*/
	}
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

