:root {
    --app-bg:#F9B953;
    --app-fg:#FFFFFF;
    --font:"Inter", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body,html {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}

body {
    background-color: var(--app-bg);
    color: var(--app-fg);
    font-family: var(--font);
    padding:0;
    margin:0;
}
.logo{
    width:90%;
    max-width:500px;
}
.homebanner{
    width:100vw;
    height:100vh;
    height:100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}