@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&family=Source+Serif+Pro:wght@300;700&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif Pro', serif;
}

.root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.header {
    margin: 1rem 0;
}

.button-menu {
    border: 0;
    padding: 0 20px;
    font-size: 14px;
    position: relative;
}

.button-menu:hover {
    cursor: not-allowed;
}

.button-menu:hover:before, .button-menu:active:before {
    background-color: white;
    border: 2px solid #E1E1E1;
    border-radius: 4px;
    content: "😅 Majd...";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tree {
    width: 100%;
    height: 320px;
    background-image: url('/images/undraw_christmas_tree.svg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 1.667rem;
    margin-top: -1.667rem;
}

.message {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.footer {
    background-color: #F1F1F1;
    position: relative;
    text-align: center;
    padding: 0.667rem 0;
    font-size: 1.334rem;
    color: #555555;
}
