@font-face {
	font-family: 'Sora';
    src: url('font/Sora-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 800;	
}

* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Sora';
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
}
header{    
    margin-top: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 0.6rem;
}
main {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
h1 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}
h2 {
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}
h3 {
    font-size: 1rem;
    letter-spacing: 0.08rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}
p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1rem;
    hyphens: auto;
}
a {
    font-size: 1.1rem;
    font-weight: 300;
    color:black;
    margin-right: 2rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px; 
}
.menu a {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    list-style: none;
}
ul a {
    text-decoration: none;
}
.zutaten {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
}
.zutaten ul {
    font-size: 1.6rem;
    font-weight: 300;
    text-transform: none;
}

#red:hover {
    color: #A00F28;
}
#yellow:hover {
    color: #c77400;
}
#blue:hover {
    color: #002C7A;
}
#green:hover {
    color: #195A32;
}

#red:active {
    color: #A00F28;
}
#yellow:active {
    color: #c77400;
}
#blue:active {
    color: #002C7A;
}
#green:active {
    color: #195A32;
}

/* iPad */
@media (max-width: 1040px) {
    :root {
        font-size: 90%;    
    }
}

/* Mobile */
@media (max-width: 760px) {
    :root {
        font-size: 70%;    
    }
    body {
        height: auto;
    }   
    .zutaten {
        position: relative;
        padding-top: 2rem;
        left: 0;
        right: 2rem;
        bottom: 2rem;
    }
}