@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-image: url("./nasa-earth.jpg");
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: #f5deb3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
 }

 .main-container {
     display: flex;
     text-align: center;
 }

.hello {
    align-items: center;
    text-align: center;
}

.icons {
    width: 200px;
    background-color:#f5deb3;
    border-radius: 25px;
    background-position: left top;
    background-repeat: repeat;
    display:inline-block;
    vertical-align: middle;
}