@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --blue: rgb(26, 119, 226);
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.float{
	position:fixed;
	width:80px;
	height:78px;
	bottom:30px;
	right:40px;
	background-color: #4dc247;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
    z-index:100;
}

.float:hover {
    background-color: #1fa318;
}

.my-float {
    margin-top: 9px;
    margin-left: 1px;
    font-size: 60px;
}

h1 {
    color: var(--blue);
    padding-bottom: 15px;
}








