@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

p{
    margin: 0px;
}

.container-soon-all{
    width: 100%;
    height: 90vh;  /* <--- CHANGE SOON */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-soon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 20px;
}

.img-cont-soon{
    aspect-ratio: 1/1;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    border: 3px solid black;
    overflow: hidden;
}

.img-cont-soon img{
    width: 100%;
    height: 100%;
}

.text-soon{
    text-align: center;
}

.text-soon1{
    font-weight: bold;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.link{
    font-weight: bold;
    margin-top: 20px;
    text-decoration: underline;
    color: black;
}














