.link {
    color: #00C8A5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.link:hover {
    color: #00B08C;
}

.link::before {
    content: "<"
}

.link::after {
    content: "/>"
}

.content_text {
    width: 50%;
}


a.highlight {
    color: #00C8A5;
    text-decoration: none;
}

#get_started_button {
    width: max-content;
    height: max-content;

    border-radius: 5px;
    border: none;
    
    font-size: 20px;
    font-weight: 600;
    color: #e9e9e9;

    background-color: #00B08C;
}

#get_started_button:hover {
    background-color: #00C8A5;
}

#get_started_button>a {
    display: block;

    color: #e9e9e9;
    text-decoration: none;
    padding: 10px;
}

@media screen and (max-width: 800px) {
    .content_text {
        width: 100%;
    }
}