@charset "UTF-8";

/*** Genereal Styles ***/
html, body {
    height: 100%;
}
body {
    
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    
}

/* Header styles */

header {
    background: url('../img/head-bg.png');
    grid-area: header;
    padding-top: 10px;
    height: 80px;
}
header img {
    float: left;
}
#headerFill {
    background: url('../img/head-bg.png');
    grid-area:filler;
}
/* Navigation Styles */
nav {
    background: url('../img/head-bg.png');
    grid-area: nav;
    padding-top: 10px;
}
nav ul {
    list-style-type: none;
    
}
nav ul li {
    display: inline-block;
}
nav ul li a{
    text-decoration: none;
    color:#fff;
    font-size: 1em;
	text-transform:uppercase;
    padding:4px 20px 20px 0px;
    
}
nav ul li a:hover{
    text-decoration: underline;

    
}
#menuicon {
    display: none;
}
#mobilemenu {
    display: none;
}
/* Content styles */

#content {
    grid-area: content;
    background:url(../img/trans-bg.png);
	max-width:400px;
	padding:20px;
	border:1px solid #eee;
	border-radius:20px;
	margin-top:6px;
}
#content a {
    color:black;
    text-decoration: underline overline;
}
#content a:hover {
    text-decoration: underline;
    color: cornflowerblue;
}
#prodImg {
    grid-area:  prodimg;
    margin-top:6px;
}
#prodImg img {
    border-radius:20px;
}

/* Product styling */

#prodfamilywrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.prod {
    width: 30%;
    margin:0 auto;
    text-align: center;
}
.prod h5 {

}
.prod a {

}

/*Footer stylning */

footer {
    grid-area: footer;
}
#nla {
    text-align: center;
}
/* Product specific styling */

#prodSpec {

}

.prodSpecArea {
    font-weight: bold;
}

/* Contact form styling */
#inputForm {
    display: grid;
    gap: 1em;
    grid-template-columns: auto auto;
    
}

#inputForm input {
    max-width: 7ch;
}
#inputForm textarea {
    max-width: 7ch;
}
#skicka {
    font-weight: bold;

}

#settings  {
    display: none;
}

