 /* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 100 to 900 */

:root{
    --blue: rgb(70, 110, 255);
    --green: rgb(0, 180, 120);
    --ligt-blue: rgb(187, 202, 255);
    --ligt-green: rgb(104, 216, 179);
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: black;
  margin: 0;
  padding: 0;
}

header>a>img{
    max-height: 100px;
}

header{
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

a{
    color: black;
    padding: 20px;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease;
}

a:hover{
    transform: scale(1.1); 
}

.use{
    color: var(--blue);
}

ul{
    display: flex;
    list-style: none;
}

main{
    max-width: 80%;
    margin: 0 auto;
}

.sect{
    display: block;
    background-color: var(--ligt-blue);
    color: black;
    max-width: 60%;
    margin: 50px auto;
    text-align: center;
}

.sect>p{
    padding: 0 10px;
}

.frame{
    background-color: var(--green);
    padding: 20px;
}
.frame>article>h1{
    font-weight: 900;
}

.frame>article>p{
    font-size: 20px;
    font-weight: 500;
}

.continer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.continer{
    width: 100%;
    height: 300px;
    overflow: hidden;
}


.under-img{
    background-color: var(--blue);
}

.under-img>article{
    padding: 20px;
    background-color: var(--green);
}

.under-img>article>h2{
    font-weight: 900;
}

.under-img>article>p{
    font-weight: 500;
    font-size: 20px;
}

.overskrift>h2, .overskrift>p{
    text-align: center;
    font-weight: 900;
}

.overskrift{
    background-color: white;
}

.lile-bidet{
    border-radius: 200px;
    max-width: 300px;
}

.fem-h {
    font-weight: 500;
}

.fem-h-border{
    margin: 10px 30%;
    font-weight: 500;
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-right: 3px solid var(--green);
}

.fem-h-border-x{
    margin: 10px 20%;
    font-weight: 500;
    border-bottom: 3px solid var(--blue);
    border-left: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
}

.kont{
    color: var(--blue);
}

.container{
    margin: 10px 0;
    height: 310px;
    position: relative;
    overflow: hidden;
}

.content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ligt-green);
    display: flex;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.content>div{
    padding: 0 10px;
}

.content>img{
    max-width: 400px;
}

.content.active{
    opacity: 1;
}

section>div{
    padding: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}


footer>article{
    background-color: var(--green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

footer>article>div>img{
    max-height: 200px;
}

.face-logo{
    max-width: 110px;
}

.inst-logo{
    max-width: 90px;
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    header{
        font-size: 15px;
    }

    header>a>img{
        max-height: 50px;
    }

    .lile-bidet{
        border-radius: 200px;
        max-width: 200px;
    }

    footer>article>div>img{
        max-height: 50px;
    }

    section>div{
        flex-wrap: wrap;
    }

    .sect{
        max-width: 80%;
    }

    a{
        padding: 10px;
    }

    .fem-h-border{
        margin: 10px 10%;
    }
    
    .fem-h-border-x{
        margin: 10px 10%;
    }
    
    .kont{
        font-size: 13px;
    }

    .info-sceam{
        flex-wrap: wrap;
        max-height: 100%;
    }

    .info-sceam>img{
        max-width: 100%;
    }

    .info-sceam>div{
        padding: 0 10px;
    }

    
}
