:root {
    --small: 576px;
    --medium: 768px;
    --large: 992px;
    --extraLarge: 1200px;
}

@font-face {
     font-family: 'nova regular';
     src: url('../fonts/proximanova_light.otf') format('truetype');
}

.paper-left {
   border-left: 4px solid #e81519; /* Left border only */
    padding:10px;
  	margin:10px;
    /* Paper-like shadow effect */
    box-shadow: 
      0 1px 3px rgba(0,0,0,0.24), /* subtle shadow at bottom */
      0 1px 2px rgba(0,0,0,0.24);  /* slightly stronger shadow */
    
    /* Optional rounded corners */
    border-radius: 2px;
}

.paper-right {
   border-right: 4px solid #e81519; /* Left border only */
   padding:10px;
  margin:10px;
    /* Paper-like shadow effect */
    box-shadow: 
      0 1px 3px rgba(0,0,0,0.24), /* subtle shadow at bottom */
      0 1px 2px rgba(0,0,0,0.24);  /* slightly stronger shadow */
    
    /* Optional rounded corners */
    border-radius: 2px;
}

body, html {
    margin:0;
    padding: 0px;
  	min-width:370px;
  overflow-x: hidden;
  font-family: 'nova regular', Helvetica, Arial, sans-serif;
}

.background {
  width:100%;
  height:100%;
  background-color: white;
  z-index:1;
  position:relative;
}

.logo {
    height:100px; 
    margin-left:0px;
}
.navbar {
    background-color: #a91618;

    width:100%;
    margin-bottom: 0;
    border-bottom-width: 0px;
    border-radius: 0;
}

.burger-meny {
    font-size:2.5em;
    padding: 5px;
    border-radius: 50%;
    color:rgb(244, 244, 244);
}

.burger-meny:hover {
    background-color: rgb(166, 0, 0);
}

.navbar-nav {

    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav li a {
    font-size: 1.3em;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 25px;
    color: rgb(252, 252, 252);
    
    transition: background-color 0.2s;
}

.navbar-nav li a:hover,  .navbar-nav li a:focus{
    background-color: rgb(166, 0, 0);
    color:rgb(255, 255, 255);
}

.navbar-nav li a:active {

    background-color: rgb(232, 232, 232);
    color:rgb(29, 29, 29);
}

.navbar-field-extra-lg {
    width: calc(100% - 10px);

    position: absolute;
    text-align: right;
    top:70px;
}

.navbar-field-extra-md {
    height: 0;
    visibility: hidden;
}

.list-group {
    margin: 0;
}

.extra-links {
    font-size: 1.3em;
    font-family: 'Source Sans Pro', sans-serif;
    color: #ffffff;
    text-decoration: none;

    margin-left: 20px;
}

.extra-links:hover {
    color: rgb(186, 186, 186);
    text-decoration: none;
}

.extra-links:active {
    color: #190000;
    text-decoration: none;
}

.extra-links:focus {
    color: #e81519;
    text-decoration: none;
}

.topImage {
    display: none;
}

#navigation {
    width: 100%;
}

main {
    padding-left: 5px;
    padding-right: 5px;
    
    border-top: none;
}

.cut-off {
    height: 4px;
    width: 100%;
    background-color: #e8e6e6;
}

h1 {
    font-size: 30px;
    font-family: 'Bree Serif', serif;
}

h2 {
    font-size: 26px;
    font-family: 'Bree Serif', serif;
}

h3 {
    margin-bottom: 50px;

    text-align: center;
    font-size: 22px;
    font-family: 'Bree Serif', serif;
}

p, label {
    font-weight: 400;
    font-size: 24px;
    --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

.footer-content {
    padding: 20px;
    height: 150px;
}

.footer-content h4 {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
} 

.footer-content ul {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    list-style: none;
} 

.footer-content li {
    font-weight: 600;
}

.footer-content a {
    color: white;
}

.creator-section {
    display: flex;
    justify-content: center;
}

.creator-content {
    text-align: center;
}
.btn {
    margin-bottom: 50px;

    color: white;
    background-color: #d41b1e;
    border-radius: 2px;
    transition: background-color 0.2s;

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6em;
}

.btn:hover, .btn:focus {
    color: black;
    background-color: white;
    border: 1px solid lightgray;
}

.user-input {
    height: 30px;
    float: left;

    margin-right: 10px;

    font-family: 'Roboto', sans-serif;
    background-color: white;
    padding: 5px;

    border: 2px solid lightgray;
}

.red-block {
    background-color: #e81519;
    padding-top: 25px;
    padding-bottom: 25px;
}

.image {
    width: 20em;
    margin-left: calc(50% - 10em);
}

#footer  {
    background-color: rgb(163, 7, 7);

    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

::-webkit-scrollbar {
    background-color: white;
}

::-webkit-scrollbar-button {
    visibility: hidden;
}

::-webkit-scrollbar-thumb {
    background-color: #e81519;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) {
    .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-nav {
        margin-top: 25px;
        width: 100%;
        position: absolute;
    }
  
}

@media screen and (max-width: 992px) {
    .image {
        width: 60%;
        margin-left: 20%;
    }
  
  	.main-button {
  		width:100%;
	}
}

@media only screen and (max-width: 768px) {
    .navbar-field-extra-lg {
        height: 0;
        visibility: hidden;
    }

    .navbar-nav {
        height: auto;
        display: block;
    }

    .navbar-field-extra-md {
        visibility: visible;
        height: 30px;
        width: 100%;

        background-color: white;
    }

    .navbar-field-extra-md ul li {
        float:left;

        width: 50%;
        padding: 5px;

        border: none;
        border-radius: 0;

        text-align: center;
    }

    .extra-links {
        display: block;
        color: #190000;
        margin: 0;
        width: 100%;
    }

    .extra-links:hover {
        color: rgb(250, 250, 250);
        background-color: #d41b1e;
        text-decoration: none;
    }

    .extra-links:active {
        color: rgb(180, 180, 180);
        text-decoration: none;
    }

    .list-group-item:has(.extra-links) {
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
    }
}