@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rubik", sans-serif;
    background-color:rgb(227, 241, 241);
    color: rgb(35, 34, 53);
    font-weight: 300;
}

header {
    background-color: rgb(235, 199, 165);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
    padding: 3rem;
}

header a {
    text-decoration: double;
}