@font-face {
    font-family: 'Kaushan Script';
    src: url('/fonts/KaushanScript-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Italic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Zeydada';
    src: url('/fonts/Zeyada-Regular.ttf') format('truetype');
}

body,html {
    margin:0;
    padding:0;
    height: 100%;
}

p {
    font-family: 'Open Sans';
    display: inline-block;
    text-align: left;
    margin-top: 5px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
}

h1 {
    font-family: 'Kaushan Script';
}

h2 {
    font-family: 'Open Sans';
}

h3 {
    font-family: 'Kaushan Script';
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    color: white;
}

.navbar {
    width: 100%;
    height: 50px;
    position: fixed;
    background-color: rgb(144,207,242);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    z-index: 1001;
}

.nav-item {
    position: relative;
    width: 100px;
    height: 100%;
    text-align: center;
    padding-top: 13px;
    color: black;
    font-family: 'Open Sans';
    font-weight: bold;
    float: left;
}

.nav-item:hover {
    height: 75%;
    background-color: rgba(255, 255, 255, 0.2);
}

.logo {
    width: 200px;
    height: 100%;
    top: 25%;
    left: 10px;
    font-family: 'Kaushan Script';
    position: relative;
    float: left;
}

#wrapper {
    position:absolute;
    height:100%;
    width:100%;
    margin: auto;
}

.panels {
    position:relative;
    background-attachment: fixed;
    height:100%;
    min-height:100%;
    width:100%;
    overflow: auto;
    text-align: center;
    z-index:1000;
}

#home {
    background-image: url('/images/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
}

#massages {
    background: rgb(144,207,242);
    background: radial-gradient(circle, rgba(144,207,242,1) 0%, rgba(96,150,180,1) 100%); 
}

#additions {
    background: rgb(196,238,254);
    background: radial-gradient(circle, rgba(196,238,254,1) 0%, rgba(147,191,207,1) 100%); 
}

#prices {
    background: rgb(241,250,255);
    background: radial-gradient(circle, rgba(241,250,255,1) 0%, rgba(189,205,214,1) 100%); 
}

#book {
    background: rgb(237,245,254);
    background: radial-gradient(circle, rgba(237,245,254,1) 0%, rgba(209,225,244,1) 100%); 
}

#contact {
    background: rgb(252,251,245);
    background: radial-gradient(circle, rgba(252,251,245,1) 0%, rgba(238,233,218,1) 100%); 
}

.milk-container {
    width: 60%;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    text-align: center;
    display: inline-block;
    padding-top: 25px;
    font-family: 'Open Sans';
}

.milk-card {
    width: 500px;
    height: 450px;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    margin: 10px;
    overflow: auto;
    display: inline-block;
    text-align: center;
    font-family: 'Open Sans';
}

.spacer {
    height: 50px;
}

.copyright {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding-bottom: 10px;
    font-family: 'Open Sans';
}