@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    box-sizing: border-box;
}

body{
    background-image: url('2147815440.webp');
 a{
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    
    align-items: center;
    >div{
        margin-left: 10px;
    }
}

}
.container{
    width: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 5vh auto;
    font-family: "Roboto", sans-serif;
    box-shadow: 0px 0px 15px #000;
    >img{
      width: 100%;
    }
  }
  .content-text{
    width: 100%;
    text-align: left;
    /* font-size: 2rem; */
    padding: 0px 80px;
    background-color: rgb(32, 41, 50);
    h3{
        font-size: 26px;
        color: white;
        font-weight: 400;
        margin-bottom: 5px;
    }
    p{
        color: #c7d8e8;
        margin: 10px auto 20px;
    }
  }
.links{
    width: 100%;
    background-color: #fff;
    .item{
        padding: 10px 50px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #00000011;
        span{
            font-size: 18px;
            margin: auto 10px;
            
        }
        p{
            padding: 0;
            margin: 5px 0;
            color: #737373;
        }
        >div{
            margin: auto 10px;
        }
    }
}
@media screen and (max-width: 768px) {

    .container{
        width: 100vw;
margin: 0;
    }
    .content-text{
        width: 100%;
        text-align: left;
        padding: 0px 20px;
    }
    h3{
        font-size: 18px;
       
    }
    p{
        font-size: 14px;
    }
}