:root {
    --primary-color: #009AF2;
    --hover-button-color: #0079bf;
    --black-color: #5c5c5c;
    --white-color: #FFFFFF;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.content {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    color: var(--black-color);
    margin-top: 4rem;
    min-width: 600px;
    max-width: 80%;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-top: 4rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.link:hover {
    color: var(--hover-button-color);
}

.logo {
    max-width: 500px;
    height: auto;
    margin-top: 5rem;
}

.blue-text {
    color: var(--primary-color);
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}