@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
}
body{
    min-height: 100vh;
    font-size: 16px;
    line-height: 25px;
    background: #111;
    color: #BABABA;
    font-family: sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
}
@media screen and (max-width: 1200px) {
	body{
		padding: 20px;
	}
}
header{
    width: 1000%;
    text-align: center;
}
main{
    margin: 50px 0;
}
address{
    font-style: normal;
    margin: 20px 0;
}
h2{
    font-weight: 400;
    font-size: 32px;
    margin: 20px 0
}
a{
    color: #BABABA;
    transition: .3s ease-in-out;
}
a:hover{
    color: #9FE902;
}
footer{
    width: 100%;
    text-align: center;
}
		