@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf');
}

@font-face{
    font-family: 'Bitter';
    src: url('fonts/Bitter-VariableFont_wght.ttf');
}

body{
    background:rgb(45, 50, 101);
    color: white;
    font-family: Montserrat;
    font-weight: 10;
    overflow-x: hidden;
}

h1,h2,h3,h4{
    font-family: Bitter;
    font-weight: 500;
    padding: .5em;
}

h2{
    font-size: 1.8em;
}

h3{
    width: 100%;
}

p{
    text-wrap: pretty;
}

#mrq1{
   
    overflow: clip;
}

b{
    font-weight: 500;
}


.mrqcontainer{
    display: flex;
    padding-left: 4.8rem;
    margin-top: 50px;
    margin-bottom: 10px;
    gap: 4.8rem;
    width: max-content;
    animation: marqueemove 450s linear infinite;
}

.mrqelement{
    border: solid 1px white;
    border-radius: 999px;
    padding: 1rem 2.5rem;
    font-size: 2em;
    font-family: Bitter;
    font-weight: 400;
}

@keyframes marqueemove {
    to{
        transform: translateX(-50%);
    }
    
}

.maincontent{
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    color: black;
    margin: 1ch;
}


.description{
    display: flex;
    justify-content: center;
    font-size: 1.4em;
    padding: .5em;

}

.descsec{
    max-width: 37ch;
}

.introduction{
    max-width: 60ch;
    align-items: center;
    margin: auto;
    padding: 3ch;
}

.introduction img{

    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;   
}

.scriptscan{
    display: flex;
    margin: auto;
}

.scriptscan>img{
    width: 40vw;
    margin:auto;
    justify-content: space-around;
}

.messages{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    overflow-x:hidden;

}

.messages img{
    max-width: 350px;
   
}

.messages p{

    padding: 3ch;
    max-width: 60ch;
    font-style: italic;
}

blockquote{
    font-family: sans-serif;
    width: 100%;
    background-color: rgb(237, 240, 247);
    color: black;
    padding: 5ch;
    padding-left: 5%;
    padding-right: 5%;
    margin: 1ch;
    margin-bottom: 15ch;
}


@media only screen and (min-width: 1200px) {
    body {
      background-color: lightblue;
    }

    h1,h2,h3,h4{
        padding: 2em;
    }

    h2{
        font-size: 2.5em;
    }

    bloc

    .description{
        font-size: 1.8em;
        padding: 1em;
    
    }
    
    blockquote{
        padding: 5ch;
        padding-left: 10%;
        padding-right: 10%;
        margin: 5ch;
        margin-bottom: 30ch;

    }

  }