@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

* {
    box-sizing: border-box;
}


body {
    margin: 0px;
    background-color: azure;
    font-family: 'Abel', sans-serif;
    color: black;
    display: flex;
    justify-content: center;

}

h1 {
    font-size: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    margin: 30px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    flex-direction: row;

}

.navbar a {
    margin: 30px;
    font-size: 30px;
}

#header {
    font-size: 30px;
    margin: 100px;
}

button {
    margin: 80px;
    padding: 10px 20px;
    font-size: 30px;
    border-radius: 10px;
}