@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.backgroundContainer {
    font-family: "Open Sans", sans-serif;
    background-color: #fafafa;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;

    &>img {
        margin-top: 3rem;
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #00a551;
    width: 50vw;
    border-style: dashed;
    text-align: center;
    padding: 3rem;
    margin-top: 10rem;
    margin-bottom: 3rem;

    .title {
        font-size: 49px;
        font-weight: bold;
    }

    .subTitle {
        font-size: 24px;
    }
}

a {
    color: #00a551;
    font-size: 24px;
    text-decoration: none;
}