@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


body {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(../images/Orange\ Pin.jpg);
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


 .main-content {
    width: min(92%, 900px);
    margin: 110px auto 60px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* justify-content: center;
    align-items: center;
    grid-auto-columns: auto; */
}

.content {
    margin-top: 10px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
    text-align: justify;
}

.content p {
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  line-height: 1.7;
}



@media(max-width: 768px) {
    body {
        background:  linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../images/iPhone-About.png);
        background-position: center;
        background-size: cover;
    }


.content p {
    font-size: 1.5em;
}

    
   
}


@media(max-width: 1200px) {

    body {
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../images/Pin\ Logo.png), black;
        background-position: center;
        background-size: cover;
    }

    .main-content {
        max-width: 1200px;
    }

}
