@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');

.container {
    font-family: "Roboto", sans-serif;
    margin-top: 200px;

}

.comingsoon {
    background:rgb(243, 229, 212);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    margin: 0 auto;
    width: 300px;
    border-radius: 20px;
    box-shadow: -4px 4px 2px;

}

.comingsoon h3 {
    font-size: 25px;

}

.comingsoon p {
    padding-top: 3px;
    font-size: 17px;

}

.comingsoon p a {
    text-decoration: none;
    color: black;
}

.comingsoon p a:hover {
    color: rgb(64, 2, 2);
    text-decoration: underline;
}

