@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*, ::after, ::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;}

body {
    height: 100%;
    width: 100%;
	color: #333;
    background: #333;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;}

h1 {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 16px;}

p {
    margin-bottom: 16px;}

strong {
    font-weight: 700;}

.welcome {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;}

.kvadrat {
    background: #ffbd00;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 360px;
    height: 360px;
    padding: 32px;
}

a {
    color: #2225ce;
}

a:hover {
    color: #ff4800;
}