@charset "utf-8";
/* Reset.CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font:inherit;
	color:inherit;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
	color: white;
}

img {
	display: block;
}

table {
    border-collapse:collapse;
    border-spacing: 0;
  }
  
  button:hover {
    cursor: pointer;
  }

body {
    font-family: 'Ubuntu', sans-serif;
	color: #fff;
}

