@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html,
body{
	width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
	flex-direction:column;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu", sans-serif;
}

img{
    width: 20%;
}

a{
    margin-top: 50px;
    color: #44BDD3;
}

@media only screen and (max-width: 1200px) {
    img{
        width: 30%;
    }   
}

@media only screen and (max-width: 768px) {
	img{
        width: 50%;
    }  
}

@media only screen and (max-width: 600px) {
	img{
        width: 70%;
    } 
}