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

h1 {
    color: red;
}
body {
    margin: 0;
    padding: 0;
    background-color: rgb(247, 247, 247);
}
.container {
    display: flex;
    align-items: top;
    justify-content: center;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}
.content-container {
    width: 70%;
    max-width: 1200px;
    min-width: 800px;
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
}
.content {
    padding: 50px;
}

/* HEADER */
.header {
    width: 100%;
    height: 80px;
    background-color: #00a7e1;
    display: flex;
    align-items: center;
    /* padding: 10px 50px; */
    box-shadow: 0px 3px 5px 3px rgba(0, 0, 0, 0.1);
}
.logo-ctn {
    height: 40px;
    margin-left: 50px;
}
.header-text {
    margin-left: 50px;
    color: white;
    font-size: 2rem;
    font-family: 'Varela Round', sans-serif;
}
.header-nav {
    display: flex;
    justify-content: center;
    align-items: space-between;
    flex: 1;
}