.top-logo {
    max-width: 250px;
    position: absolute;
    top: 50px;
    left: 40px;
}

.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    padding: 0 20px;
}

.brand-name {
    font-size: 77px;
    font-weight: 500;
    color: var(--color-primary);
}

.welcome-title {
    font-size: 27px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 8px;
}

.welcome-text {
    max-width: 850px;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 300;
    color: #000;
    margin-top: 17px;
    margin-bottom: 50px;
}

.btn-primary {
    font-size: 18px;
    background-color: #0a326c;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 37px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-accent), serif;
    transition: 300ms;
    position: relative;
    display: block;
    max-width: fit-content;
}

.btn-primary:hover {
    background-color: #21A0A0;
    color: #fff;
    transform: scale(1.05);
}
