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

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a {
    text-decoration: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #130d13;
    background-image: url('../img/background/monstera-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}